blob: a08a9637e8fa08e6a4ddc7878c2375b6509b3457 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
'use strict';
module.exports = function fmod(x, y) {
// discuss at: http://locutus.io/php/fmod/
// original by: Onno Marsman (https://twitter.com/onnomarsman)
// input by: Brett Zamir (http://brett-zamir.me)
// bugfixed by: Kevin van Zonneveld (http://kvz.io)
// example 1: fmod(5.7, 1.3)
// returns 1: 0.5
var tmp;
var tmp2;
var p = 0;
var pY = 0;
var l = 0.0;
var l2 = 0.0;
tmp = x.toExponential().match(/^.\.?(.*)e(.+)$/);
p = parseInt(tmp[2], 10) - (tmp[1] + '').length;
tmp = y.toExponential().match(/^.\.?(.*)e(.+)$/);
pY = parseInt(tmp[2], 10) - (tmp[1] + '').length;
if (pY > p) {
p = pY;
}
tmp2 = x % y;
if (p < -100 || p > 20) {
// toFixed will give an out of bound error so we fix it like this:
l = Math.round(Math.log(tmp2) / Math.log(10));
l2 = Math.pow(10, l);
return (tmp2 / l2).toFixed(l - p) * l2;
} else {
return parseFloat(tmp2.toFixed(-p));
}
};
//# sourceMappingURL=fmod.js.map
|