UNPKG

342 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.isApproximatelyTheSame = void 0;
4const FLOATING_POINT_ERROR_THRESHOLD = 0.00001;
5const isApproximatelyTheSame = (num1, num2) => {
6 return Math.abs(num1 - num2) < FLOATING_POINT_ERROR_THRESHOLD;
7};
8exports.isApproximatelyTheSame = isApproximatelyTheSame;