{"version":3,"file":"nearlyEqual.cjs","sources":["../../../src/core/utils/nearlyEqual.ts"],"sourcesContent":["/**\n * Check if two numbers are nearly equal.\n * @param a - The first number.\n * @param b - The second number.\n * @param EPSILON - The epsilon value.\n * @returns True if the numbers are nearly equal, false otherwise.\n */\nexport function nearlyEqual(a: number, b: number, EPSILON = 0.49) {\n    return Math.abs(a - b) < EPSILON;\n}\n"],"names":[],"mappings":";;AAOO,SAAS,YAAY,GAAW,GAAW,UAAU,MAAM;AAC9D,SAAO,KAAK,IAAI,IAAI,CAAC,IAAI;AAC7B;;"}