build dist for rounding fix

This commit is contained in:
Gregg Van Hove
2019-05-20 17:17:55 -07:00
parent 3a89cc92fb
commit b12981a3e7

View File

@@ -4185,7 +4185,7 @@ getJasmineRequireObj().toBeCloseTo = function() {
var maxDelta = Math.pow(10, -precision) / 2;
return {
pass: Math.round(delta * pow) / pow <= maxDelta
pass: Math.round(delta * pow) <= maxDelta * pow
};
}
};