const floatEpsilon = Math.pow(2, -23);
const equal = (a, b) => {
return
Math.abs(a - b) <= floatEpsilon * Math.max(Math.abs(a), Math.abs(b));
}