diff options
Diffstat (limited to 'node_modules/locutus/php/math')
94 files changed, 1090 insertions, 0 deletions
diff --git a/node_modules/locutus/php/math/abs.js b/node_modules/locutus/php/math/abs.js new file mode 100644 index 0000000..7be6a86 --- /dev/null +++ b/node_modules/locutus/php/math/abs.js @@ -0,0 +1,20 @@ +"use strict"; + +module.exports = function abs(mixedNumber) { + // discuss at: http://locutus.io/php/abs/ + // original by: Waldo Malqui Silva (http://waldo.malqui.info) + // improved by: Karol Kowalski + // improved by: Kevin van Zonneveld (http://kvz.io) + // improved by: Jonas Raoni Soares Silva (http://www.jsfromhell.com) + // example 1: abs(4.2) + // returns 1: 4.2 + // example 2: abs(-4.2) + // returns 2: 4.2 + // example 3: abs(-5) + // returns 3: 5 + // example 4: abs('_argos') + // returns 4: 0 + + return Math.abs(mixedNumber) || 0; +}; +//# sourceMappingURL=abs.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/abs.js.map b/node_modules/locutus/php/math/abs.js.map new file mode 100644 index 0000000..de1e476 --- /dev/null +++ b/node_modules/locutus/php/math/abs.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/abs.js"],"names":["module","exports","abs","mixedNumber","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,GAAT,CAAcC,WAAd,EAA2B;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,GAAL,CAASC,WAAT,KAAyB,CAAhC;AACD,CAhBD","file":"abs.js","sourcesContent":["module.exports = function abs (mixedNumber) {\n // discuss at: http://locutus.io/php/abs/\n // original by: Waldo Malqui Silva (http://waldo.malqui.info)\n // improved by: Karol Kowalski\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)\n // example 1: abs(4.2)\n // returns 1: 4.2\n // example 2: abs(-4.2)\n // returns 2: 4.2\n // example 3: abs(-5)\n // returns 3: 5\n // example 4: abs('_argos')\n // returns 4: 0\n\n return Math.abs(mixedNumber) || 0\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/acos.js b/node_modules/locutus/php/math/acos.js new file mode 100644 index 0000000..019a6ef --- /dev/null +++ b/node_modules/locutus/php/math/acos.js @@ -0,0 +1,12 @@ +"use strict"; + +module.exports = function acos(arg) { + // discuss at: http://locutus.io/php/acos/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // note 1: Sorry about the crippled test. Needed because precision differs accross platforms. + // example 1: (acos(0.3) + '').substr(0, 17) + // returns 1: "1.266103672779499" + + return Math.acos(arg); +}; +//# sourceMappingURL=acos.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/acos.js.map b/node_modules/locutus/php/math/acos.js.map new file mode 100644 index 0000000..c3ccceb --- /dev/null +++ b/node_modules/locutus/php/math/acos.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/acos.js"],"names":["module","exports","acos","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoB;AACnC;AACA;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,IAAL,CAAUC,GAAV,CAAP;AACD,CARD","file":"acos.js","sourcesContent":["module.exports = function acos (arg) {\n // discuss at: http://locutus.io/php/acos/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // note 1: Sorry about the crippled test. Needed because precision differs accross platforms.\n // example 1: (acos(0.3) + '').substr(0, 17)\n // returns 1: \"1.266103672779499\"\n\n return Math.acos(arg)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/acosh.js b/node_modules/locutus/php/math/acosh.js new file mode 100644 index 0000000..42b4d04 --- /dev/null +++ b/node_modules/locutus/php/math/acosh.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function acosh(arg) { + // discuss at: http://locutus.io/php/acosh/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: acosh(8723321.4) + // returns 1: 16.674657798418625 + + return Math.log(arg + Math.sqrt(arg * arg - 1)); +}; +//# sourceMappingURL=acosh.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/acosh.js.map b/node_modules/locutus/php/math/acosh.js.map new file mode 100644 index 0000000..0e00944 --- /dev/null +++ b/node_modules/locutus/php/math/acosh.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/acosh.js"],"names":["module","exports","acosh","arg","Math","log","sqrt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,GAAhB,EAAqB;AACpC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKC,GAAL,CAASF,MAAMC,KAAKE,IAAL,CAAUH,MAAMA,GAAN,GAAY,CAAtB,CAAf,CAAP;AACD,CAPD","file":"acosh.js","sourcesContent":["module.exports = function acosh (arg) {\n // discuss at: http://locutus.io/php/acosh/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: acosh(8723321.4)\n // returns 1: 16.674657798418625\n\n return Math.log(arg + Math.sqrt(arg * arg - 1))\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/asin.js b/node_modules/locutus/php/math/asin.js new file mode 100644 index 0000000..d1f7365 --- /dev/null +++ b/node_modules/locutus/php/math/asin.js @@ -0,0 +1,12 @@ +"use strict"; + +module.exports = function asin(arg) { + // discuss at: http://locutus.io/php/asin/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // note 1: Sorry about the crippled test. Needed because precision differs accross platforms. + // example 1: (asin(0.3) + '').substr(0, 17) + // returns 1: "0.304692654015397" + + return Math.asin(arg); +}; +//# sourceMappingURL=asin.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/asin.js.map b/node_modules/locutus/php/math/asin.js.map new file mode 100644 index 0000000..a5037f0 --- /dev/null +++ b/node_modules/locutus/php/math/asin.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/asin.js"],"names":["module","exports","asin","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoB;AACnC;AACA;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,IAAL,CAAUC,GAAV,CAAP;AACD,CARD","file":"asin.js","sourcesContent":["module.exports = function asin (arg) {\n // discuss at: http://locutus.io/php/asin/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // note 1: Sorry about the crippled test. Needed because precision differs accross platforms.\n // example 1: (asin(0.3) + '').substr(0, 17)\n // returns 1: \"0.304692654015397\"\n\n return Math.asin(arg)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/asinh.js b/node_modules/locutus/php/math/asinh.js new file mode 100644 index 0000000..c919741 --- /dev/null +++ b/node_modules/locutus/php/math/asinh.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function asinh(arg) { + // discuss at: http://locutus.io/php/asinh/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: asinh(8723321.4) + // returns 1: 16.67465779841863 + + return Math.log(arg + Math.sqrt(arg * arg + 1)); +}; +//# sourceMappingURL=asinh.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/asinh.js.map b/node_modules/locutus/php/math/asinh.js.map new file mode 100644 index 0000000..dc46f91 --- /dev/null +++ b/node_modules/locutus/php/math/asinh.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/asinh.js"],"names":["module","exports","asinh","arg","Math","log","sqrt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,GAAhB,EAAqB;AACpC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKC,GAAL,CAASF,MAAMC,KAAKE,IAAL,CAAUH,MAAMA,GAAN,GAAY,CAAtB,CAAf,CAAP;AACD,CAPD","file":"asinh.js","sourcesContent":["module.exports = function asinh (arg) {\n // discuss at: http://locutus.io/php/asinh/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: asinh(8723321.4)\n // returns 1: 16.67465779841863\n\n return Math.log(arg + Math.sqrt(arg * arg + 1))\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/atan.js b/node_modules/locutus/php/math/atan.js new file mode 100644 index 0000000..79ad79c --- /dev/null +++ b/node_modules/locutus/php/math/atan.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function atan(arg) { + // discuss at: http://locutus.io/php/atan/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: atan(8723321.4) + // returns 1: 1.5707962121596615 + + return Math.atan(arg); +}; +//# sourceMappingURL=atan.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/atan.js.map b/node_modules/locutus/php/math/atan.js.map new file mode 100644 index 0000000..dd66603 --- /dev/null +++ b/node_modules/locutus/php/math/atan.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/atan.js"],"names":["module","exports","atan","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoB;AACnC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,IAAL,CAAUC,GAAV,CAAP;AACD,CAPD","file":"atan.js","sourcesContent":["module.exports = function atan (arg) {\n // discuss at: http://locutus.io/php/atan/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: atan(8723321.4)\n // returns 1: 1.5707962121596615\n\n return Math.atan(arg)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/atan2.js b/node_modules/locutus/php/math/atan2.js new file mode 100644 index 0000000..3e10515 --- /dev/null +++ b/node_modules/locutus/php/math/atan2.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function atan2(y, x) { + // discuss at: http://locutus.io/php/atan2/ + // original by: Brett Zamir (http://brett-zamir.me) + // example 1: atan2(1, 1) + // returns 1: 0.7853981633974483 + + return Math.atan2(y, x); +}; +//# sourceMappingURL=atan2.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/atan2.js.map b/node_modules/locutus/php/math/atan2.js.map new file mode 100644 index 0000000..f1afceb --- /dev/null +++ b/node_modules/locutus/php/math/atan2.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/atan2.js"],"names":["module","exports","atan2","y","x","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,CAAhB,EAAmBC,CAAnB,EAAsB;AACrC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKH,KAAL,CAAWC,CAAX,EAAcC,CAAd,CAAP;AACD,CAPD","file":"atan2.js","sourcesContent":["module.exports = function atan2 (y, x) {\n // discuss at: http://locutus.io/php/atan2/\n // original by: Brett Zamir (http://brett-zamir.me)\n // example 1: atan2(1, 1)\n // returns 1: 0.7853981633974483\n\n return Math.atan2(y, x)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/atanh.js b/node_modules/locutus/php/math/atanh.js new file mode 100644 index 0000000..1c670bb --- /dev/null +++ b/node_modules/locutus/php/math/atanh.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function atanh(arg) { + // discuss at: http://locutus.io/php/atanh/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: atanh(0.3) + // returns 1: 0.3095196042031118 + + return 0.5 * Math.log((1 + arg) / (1 - arg)); +}; +//# sourceMappingURL=atanh.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/atanh.js.map b/node_modules/locutus/php/math/atanh.js.map new file mode 100644 index 0000000..01c3f29 --- /dev/null +++ b/node_modules/locutus/php/math/atanh.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/atanh.js"],"names":["module","exports","atanh","arg","Math","log"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,GAAhB,EAAqB;AACpC;AACA;AACA;AACA;;AAEA,SAAO,MAAMC,KAAKC,GAAL,CAAS,CAAC,IAAIF,GAAL,KAAa,IAAIA,GAAjB,CAAT,CAAb;AACD,CAPD","file":"atanh.js","sourcesContent":["module.exports = function atanh (arg) {\n // discuss at: http://locutus.io/php/atanh/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: atanh(0.3)\n // returns 1: 0.3095196042031118\n\n return 0.5 * Math.log((1 + arg) / (1 - arg))\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/base_convert.js b/node_modules/locutus/php/math/base_convert.js new file mode 100644 index 0000000..ac2c8cc --- /dev/null +++ b/node_modules/locutus/php/math/base_convert.js @@ -0,0 +1,13 @@ +'use strict'; + +module.exports = function base_convert(number, frombase, tobase) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/base_convert/ + // original by: Philippe Baumann + // improved by: Rafał Kukawski (http://blog.kukawski.pl) + // example 1: base_convert('A37334', 16, 2) + // returns 1: '101000110111001100110100' + + return parseInt(number + '', frombase | 0).toString(tobase | 0); +}; +//# sourceMappingURL=base_convert.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/base_convert.js.map b/node_modules/locutus/php/math/base_convert.js.map new file mode 100644 index 0000000..0972da2 --- /dev/null +++ b/node_modules/locutus/php/math/base_convert.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/base_convert.js"],"names":["module","exports","base_convert","number","frombase","tobase","parseInt","toString"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,YAAT,CAAuBC,MAAvB,EAA+BC,QAA/B,EAAyCC,MAAzC,EAAiD;AAAE;AAClE;AACA;AACA;AACA;AACA;;AAEA,SAAOC,SAASH,SAAS,EAAlB,EAAsBC,WAAW,CAAjC,EACJG,QADI,CACKF,SAAS,CADd,CAAP;AAED,CATD","file":"base_convert.js","sourcesContent":["module.exports = function base_convert (number, frombase, tobase) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/base_convert/\n // original by: Philippe Baumann\n // improved by: Rafał Kukawski (http://blog.kukawski.pl)\n // example 1: base_convert('A37334', 16, 2)\n // returns 1: '101000110111001100110100'\n\n return parseInt(number + '', frombase | 0)\n .toString(tobase | 0)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/bindec.js b/node_modules/locutus/php/math/bindec.js new file mode 100644 index 0000000..75c2fe2 --- /dev/null +++ b/node_modules/locutus/php/math/bindec.js @@ -0,0 +1,17 @@ +'use strict'; + +module.exports = function bindec(binaryString) { + // discuss at: http://locutus.io/php/bindec/ + // original by: Philippe Baumann + // example 1: bindec('110011') + // returns 1: 51 + // example 2: bindec('000110011') + // returns 2: 51 + // example 3: bindec('111') + // returns 3: 7 + + binaryString = (binaryString + '').replace(/[^01]/gi, ''); + + return parseInt(binaryString, 2); +}; +//# sourceMappingURL=bindec.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/bindec.js.map b/node_modules/locutus/php/math/bindec.js.map new file mode 100644 index 0000000..3787ca3 --- /dev/null +++ b/node_modules/locutus/php/math/bindec.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/bindec.js"],"names":["module","exports","bindec","binaryString","replace","parseInt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,YAAjB,EAA+B;AAC9C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEAA,iBAAe,CAACA,eAAe,EAAhB,EAAoBC,OAApB,CAA4B,SAA5B,EAAuC,EAAvC,CAAf;;AAEA,SAAOC,SAASF,YAAT,EAAuB,CAAvB,CAAP;AACD,CAbD","file":"bindec.js","sourcesContent":["module.exports = function bindec (binaryString) {\n // discuss at: http://locutus.io/php/bindec/\n // original by: Philippe Baumann\n // example 1: bindec('110011')\n // returns 1: 51\n // example 2: bindec('000110011')\n // returns 2: 51\n // example 3: bindec('111')\n // returns 3: 7\n\n binaryString = (binaryString + '').replace(/[^01]/gi, '')\n\n return parseInt(binaryString, 2)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/ceil.js b/node_modules/locutus/php/math/ceil.js new file mode 100644 index 0000000..20ea371 --- /dev/null +++ b/node_modules/locutus/php/math/ceil.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function ceil(value) { + // discuss at: http://locutus.io/php/ceil/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: ceil(8723321.4) + // returns 1: 8723322 + + return Math.ceil(value); +}; +//# sourceMappingURL=ceil.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/ceil.js.map b/node_modules/locutus/php/math/ceil.js.map new file mode 100644 index 0000000..be26235 --- /dev/null +++ b/node_modules/locutus/php/math/ceil.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/ceil.js"],"names":["module","exports","ceil","value","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,KAAf,EAAsB;AACrC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,IAAL,CAAUC,KAAV,CAAP;AACD,CAPD","file":"ceil.js","sourcesContent":["module.exports = function ceil (value) {\n // discuss at: http://locutus.io/php/ceil/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: ceil(8723321.4)\n // returns 1: 8723322\n\n return Math.ceil(value)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/cos.js b/node_modules/locutus/php/math/cos.js new file mode 100644 index 0000000..98c3cb0 --- /dev/null +++ b/node_modules/locutus/php/math/cos.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function cos(arg) { + // discuss at: http://locutus.io/php/cos/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: Math.ceil(cos(8723321.4) * 10000000) + // returns 1: -1812718 + + return Math.cos(arg); +}; +//# sourceMappingURL=cos.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/cos.js.map b/node_modules/locutus/php/math/cos.js.map new file mode 100644 index 0000000..5ba219e --- /dev/null +++ b/node_modules/locutus/php/math/cos.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/cos.js"],"names":["module","exports","cos","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,GAAT,CAAcC,GAAd,EAAmB;AAClC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,GAAL,CAASC,GAAT,CAAP;AACD,CAPD","file":"cos.js","sourcesContent":["module.exports = function cos (arg) {\n // discuss at: http://locutus.io/php/cos/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: Math.ceil(cos(8723321.4) * 10000000)\n // returns 1: -1812718\n\n return Math.cos(arg)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/cosh.js b/node_modules/locutus/php/math/cosh.js new file mode 100644 index 0000000..e3b1686 --- /dev/null +++ b/node_modules/locutus/php/math/cosh.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function cosh(arg) { + // discuss at: http://locutus.io/php/cosh/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: cosh(-0.18127180117607017) + // returns 1: 1.0164747716114113 + + return (Math.exp(arg) + Math.exp(-arg)) / 2; +}; +//# sourceMappingURL=cosh.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/cosh.js.map b/node_modules/locutus/php/math/cosh.js.map new file mode 100644 index 0000000..da07d3e --- /dev/null +++ b/node_modules/locutus/php/math/cosh.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/cosh.js"],"names":["module","exports","cosh","arg","Math","exp"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoB;AACnC;AACA;AACA;AACA;;AAEA,SAAO,CAACC,KAAKC,GAAL,CAASF,GAAT,IAAgBC,KAAKC,GAAL,CAAS,CAACF,GAAV,CAAjB,IAAmC,CAA1C;AACD,CAPD","file":"cosh.js","sourcesContent":["module.exports = function cosh (arg) {\n // discuss at: http://locutus.io/php/cosh/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: cosh(-0.18127180117607017)\n // returns 1: 1.0164747716114113\n\n return (Math.exp(arg) + Math.exp(-arg)) / 2\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/decbin.js b/node_modules/locutus/php/math/decbin.js new file mode 100644 index 0000000..7cdd4a9 --- /dev/null +++ b/node_modules/locutus/php/math/decbin.js @@ -0,0 +1,22 @@ +"use strict"; + +module.exports = function decbin(number) { + // discuss at: http://locutus.io/php/decbin/ + // original by: Enrique Gonzalez + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript + // input by: pilus + // input by: nord_ua + // example 1: decbin(12) + // returns 1: '1100' + // example 2: decbin(26) + // returns 2: '11010' + // example 3: decbin('26') + // returns 3: '11010' + + if (number < 0) { + number = 0xFFFFFFFF + number + 1; + } + return parseInt(number, 10).toString(2); +}; +//# sourceMappingURL=decbin.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/decbin.js.map b/node_modules/locutus/php/math/decbin.js.map new file mode 100644 index 0000000..956a9e3 --- /dev/null +++ b/node_modules/locutus/php/math/decbin.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/decbin.js"],"names":["module","exports","decbin","number","parseInt","toString"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,MAAjB,EAAyB;AACxC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIA,SAAS,CAAb,EAAgB;AACdA,aAAS,aAAaA,MAAb,GAAsB,CAA/B;AACD;AACD,SAAOC,SAASD,MAAT,EAAiB,EAAjB,EACJE,QADI,CACK,CADL,CAAP;AAED,CAnBD","file":"decbin.js","sourcesContent":["module.exports = function decbin (number) {\n // discuss at: http://locutus.io/php/decbin/\n // original by: Enrique Gonzalez\n // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript\n // input by: pilus\n // input by: nord_ua\n // example 1: decbin(12)\n // returns 1: '1100'\n // example 2: decbin(26)\n // returns 2: '11010'\n // example 3: decbin('26')\n // returns 3: '11010'\n\n if (number < 0) {\n number = 0xFFFFFFFF + number + 1\n }\n return parseInt(number, 10)\n .toString(2)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/dechex.js b/node_modules/locutus/php/math/dechex.js new file mode 100644 index 0000000..361d8ce --- /dev/null +++ b/node_modules/locutus/php/math/dechex.js @@ -0,0 +1,21 @@ +"use strict"; + +module.exports = function dechex(number) { + // discuss at: http://locutus.io/php/dechex/ + // original by: Philippe Baumann + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript + // input by: pilus + // example 1: dechex(10) + // returns 1: 'a' + // example 2: dechex(47) + // returns 2: '2f' + // example 3: dechex(-1415723993) + // returns 3: 'ab9dc427' + + if (number < 0) { + number = 0xFFFFFFFF + number + 1; + } + return parseInt(number, 10).toString(16); +}; +//# sourceMappingURL=dechex.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/dechex.js.map b/node_modules/locutus/php/math/dechex.js.map new file mode 100644 index 0000000..45c2442 --- /dev/null +++ b/node_modules/locutus/php/math/dechex.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/dechex.js"],"names":["module","exports","dechex","number","parseInt","toString"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,MAAjB,EAAyB;AACxC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIA,SAAS,CAAb,EAAgB;AACdA,aAAS,aAAaA,MAAb,GAAsB,CAA/B;AACD;AACD,SAAOC,SAASD,MAAT,EAAiB,EAAjB,EACJE,QADI,CACK,EADL,CAAP;AAED,CAlBD","file":"dechex.js","sourcesContent":["module.exports = function dechex (number) {\n // discuss at: http://locutus.io/php/dechex/\n // original by: Philippe Baumann\n // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript\n // input by: pilus\n // example 1: dechex(10)\n // returns 1: 'a'\n // example 2: dechex(47)\n // returns 2: '2f'\n // example 3: dechex(-1415723993)\n // returns 3: 'ab9dc427'\n\n if (number < 0) {\n number = 0xFFFFFFFF + number + 1\n }\n return parseInt(number, 10)\n .toString(16)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/decoct.js b/node_modules/locutus/php/math/decoct.js new file mode 100644 index 0000000..f808756 --- /dev/null +++ b/node_modules/locutus/php/math/decoct.js @@ -0,0 +1,19 @@ +"use strict"; + +module.exports = function decoct(number) { + // discuss at: http://locutus.io/php/decoct/ + // original by: Enrique Gonzalez + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript + // input by: pilus + // example 1: decoct(15) + // returns 1: '17' + // example 2: decoct(264) + // returns 2: '410' + + if (number < 0) { + number = 0xFFFFFFFF + number + 1; + } + return parseInt(number, 10).toString(8); +}; +//# sourceMappingURL=decoct.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/decoct.js.map b/node_modules/locutus/php/math/decoct.js.map new file mode 100644 index 0000000..043db87 --- /dev/null +++ b/node_modules/locutus/php/math/decoct.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/decoct.js"],"names":["module","exports","decoct","number","parseInt","toString"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,MAAjB,EAAyB;AACxC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIA,SAAS,CAAb,EAAgB;AACdA,aAAS,aAAaA,MAAb,GAAsB,CAA/B;AACD;AACD,SAAOC,SAASD,MAAT,EAAiB,EAAjB,EACJE,QADI,CACK,CADL,CAAP;AAED,CAhBD","file":"decoct.js","sourcesContent":["module.exports = function decoct (number) {\n // discuss at: http://locutus.io/php/decoct/\n // original by: Enrique Gonzalez\n // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript\n // input by: pilus\n // example 1: decoct(15)\n // returns 1: '17'\n // example 2: decoct(264)\n // returns 2: '410'\n\n if (number < 0) {\n number = 0xFFFFFFFF + number + 1\n }\n return parseInt(number, 10)\n .toString(8)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/deg2rad.js b/node_modules/locutus/php/math/deg2rad.js new file mode 100644 index 0000000..9237593 --- /dev/null +++ b/node_modules/locutus/php/math/deg2rad.js @@ -0,0 +1,12 @@ +"use strict"; + +module.exports = function deg2rad(angle) { + // discuss at: http://locutus.io/php/deg2rad/ + // original by: Enrique Gonzalez + // improved by: Thomas Grainger (http://graingert.co.uk) + // example 1: deg2rad(45) + // returns 1: 0.7853981633974483 + + return angle * 0.017453292519943295; // (angle / 180) * Math.PI; +}; +//# sourceMappingURL=deg2rad.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/deg2rad.js.map b/node_modules/locutus/php/math/deg2rad.js.map new file mode 100644 index 0000000..1414827 --- /dev/null +++ b/node_modules/locutus/php/math/deg2rad.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/deg2rad.js"],"names":["module","exports","deg2rad","angle"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,KAAlB,EAAyB;AACxC;AACA;AACA;AACA;AACA;;AAEA,SAAOA,QAAQ,oBAAf,CAPwC,CAOJ;AACrC,CARD","file":"deg2rad.js","sourcesContent":["module.exports = function deg2rad (angle) {\n // discuss at: http://locutus.io/php/deg2rad/\n // original by: Enrique Gonzalez\n // improved by: Thomas Grainger (http://graingert.co.uk)\n // example 1: deg2rad(45)\n // returns 1: 0.7853981633974483\n\n return angle * 0.017453292519943295 // (angle / 180) * Math.PI;\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/exp.js b/node_modules/locutus/php/math/exp.js new file mode 100644 index 0000000..be2e5f3 --- /dev/null +++ b/node_modules/locutus/php/math/exp.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function exp(arg) { + // discuss at: http://locutus.io/php/exp/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: exp(0.3) + // returns 1: 1.3498588075760032 + + return Math.exp(arg); +}; +//# sourceMappingURL=exp.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/exp.js.map b/node_modules/locutus/php/math/exp.js.map new file mode 100644 index 0000000..a140832 --- /dev/null +++ b/node_modules/locutus/php/math/exp.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/exp.js"],"names":["module","exports","exp","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,GAAT,CAAcC,GAAd,EAAmB;AAClC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,GAAL,CAASC,GAAT,CAAP;AACD,CAPD","file":"exp.js","sourcesContent":["module.exports = function exp (arg) {\n // discuss at: http://locutus.io/php/exp/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: exp(0.3)\n // returns 1: 1.3498588075760032\n\n return Math.exp(arg)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/expm1.js b/node_modules/locutus/php/math/expm1.js new file mode 100644 index 0000000..9943362 --- /dev/null +++ b/node_modules/locutus/php/math/expm1.js @@ -0,0 +1,13 @@ +"use strict"; + +module.exports = function expm1(x) { + // discuss at: http://locutus.io/php/expm1/ + // original by: Brett Zamir (http://brett-zamir.me) + // improved by: Robert Eisele (http://www.xarg.org/) + // note 1: Precision 'n' can be adjusted as desired + // example 1: expm1(1e-15) + // returns 1: 1.0000000000000007e-15 + + return x < 1e-5 && x > -1e-5 ? x + 0.5 * x * x : Math.exp(x) - 1; +}; +//# sourceMappingURL=expm1.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/expm1.js.map b/node_modules/locutus/php/math/expm1.js.map new file mode 100644 index 0000000..622be99 --- /dev/null +++ b/node_modules/locutus/php/math/expm1.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/expm1.js"],"names":["module","exports","expm1","x","Math","exp"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,CAAhB,EAAmB;AAClC;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAQA,IAAI,IAAJ,IAAYA,IAAI,CAAC,IAAlB,GACHA,IAAI,MAAMA,CAAN,GAAUA,CADX,GAEHC,KAAKC,GAAL,CAASF,CAAT,IAAc,CAFlB;AAGD,CAXD","file":"expm1.js","sourcesContent":["module.exports = function expm1 (x) {\n // discuss at: http://locutus.io/php/expm1/\n // original by: Brett Zamir (http://brett-zamir.me)\n // improved by: Robert Eisele (http://www.xarg.org/)\n // note 1: Precision 'n' can be adjusted as desired\n // example 1: expm1(1e-15)\n // returns 1: 1.0000000000000007e-15\n\n return (x < 1e-5 && x > -1e-5)\n ? x + 0.5 * x * x\n : Math.exp(x) - 1\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/floor.js b/node_modules/locutus/php/math/floor.js new file mode 100644 index 0000000..6d3655b --- /dev/null +++ b/node_modules/locutus/php/math/floor.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function floor(value) { + // discuss at: http://locutus.io/php/floor/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: floor(8723321.4) + // returns 1: 8723321 + + return Math.floor(value); +}; +//# sourceMappingURL=floor.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/floor.js.map b/node_modules/locutus/php/math/floor.js.map new file mode 100644 index 0000000..495bd29 --- /dev/null +++ b/node_modules/locutus/php/math/floor.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/floor.js"],"names":["module","exports","floor","value","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,KAAhB,EAAuB;AACtC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,KAAL,CAAWC,KAAX,CAAP;AACD,CAPD","file":"floor.js","sourcesContent":["module.exports = function floor (value) {\n // discuss at: http://locutus.io/php/floor/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: floor(8723321.4)\n // returns 1: 8723321\n\n return Math.floor(value)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/fmod.js b/node_modules/locutus/php/math/fmod.js new file mode 100644 index 0000000..a08a963 --- /dev/null +++ b/node_modules/locutus/php/math/fmod.js @@ -0,0 +1,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
\ No newline at end of file diff --git a/node_modules/locutus/php/math/fmod.js.map b/node_modules/locutus/php/math/fmod.js.map new file mode 100644 index 0000000..170a0b8 --- /dev/null +++ b/node_modules/locutus/php/math/fmod.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/fmod.js"],"names":["module","exports","fmod","x","y","tmp","tmp2","p","pY","l","l2","toExponential","match","parseInt","length","Math","round","log","pow","toFixed","parseFloat"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,CAAf,EAAkBC,CAAlB,EAAqB;AACpC;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,GAAJ;AACA,MAAIC,IAAJ;AACA,MAAIC,IAAI,CAAR;AACA,MAAIC,KAAK,CAAT;AACA,MAAIC,IAAI,GAAR;AACA,MAAIC,KAAK,GAAT;;AAEAL,QAAMF,EAAEQ,aAAF,GAAkBC,KAAlB,CAAwB,iBAAxB,CAAN;AACAL,MAAIM,SAASR,IAAI,CAAJ,CAAT,EAAiB,EAAjB,IAAuB,CAACA,IAAI,CAAJ,IAAS,EAAV,EAAcS,MAAzC;AACAT,QAAMD,EAAEO,aAAF,GAAkBC,KAAlB,CAAwB,iBAAxB,CAAN;AACAJ,OAAKK,SAASR,IAAI,CAAJ,CAAT,EAAiB,EAAjB,IAAuB,CAACA,IAAI,CAAJ,IAAS,EAAV,EAAcS,MAA1C;;AAEA,MAAIN,KAAKD,CAAT,EAAY;AACVA,QAAIC,EAAJ;AACD;;AAEDF,SAAQH,IAAIC,CAAZ;;AAEA,MAAIG,IAAI,CAAC,GAAL,IAAYA,IAAI,EAApB,EAAwB;AACtB;AACAE,QAAIM,KAAKC,KAAL,CAAWD,KAAKE,GAAL,CAASX,IAAT,IAAiBS,KAAKE,GAAL,CAAS,EAAT,CAA5B,CAAJ;AACAP,SAAKK,KAAKG,GAAL,CAAS,EAAT,EAAaT,CAAb,CAAL;;AAEA,WAAO,CAACH,OAAOI,EAAR,EAAYS,OAAZ,CAAoBV,IAAIF,CAAxB,IAA6BG,EAApC;AACD,GAND,MAMO;AACL,WAAOU,WAAWd,KAAKa,OAAL,CAAa,CAACZ,CAAd,CAAX,CAAP;AACD;AACF,CAnCD","file":"fmod.js","sourcesContent":["module.exports = function fmod (x, y) {\n // discuss at: http://locutus.io/php/fmod/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // input by: Brett Zamir (http://brett-zamir.me)\n // bugfixed by: Kevin van Zonneveld (http://kvz.io)\n // example 1: fmod(5.7, 1.3)\n // returns 1: 0.5\n\n var tmp\n var tmp2\n var p = 0\n var pY = 0\n var l = 0.0\n var l2 = 0.0\n\n tmp = x.toExponential().match(/^.\\.?(.*)e(.+)$/)\n p = parseInt(tmp[2], 10) - (tmp[1] + '').length\n tmp = y.toExponential().match(/^.\\.?(.*)e(.+)$/)\n pY = parseInt(tmp[2], 10) - (tmp[1] + '').length\n\n if (pY > p) {\n p = pY\n }\n\n tmp2 = (x % y)\n\n if (p < -100 || p > 20) {\n // toFixed will give an out of bound error so we fix it like this:\n l = Math.round(Math.log(tmp2) / Math.log(10))\n l2 = Math.pow(10, l)\n\n return (tmp2 / l2).toFixed(l - p) * l2\n } else {\n return parseFloat(tmp2.toFixed(-p))\n }\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/getrandmax.js b/node_modules/locutus/php/math/getrandmax.js new file mode 100644 index 0000000..54d66e9 --- /dev/null +++ b/node_modules/locutus/php/math/getrandmax.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function getrandmax() { + // discuss at: http://locutus.io/php/getrandmax/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: getrandmax() + // returns 1: 2147483647 + + return 2147483647; +}; +//# sourceMappingURL=getrandmax.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/getrandmax.js.map b/node_modules/locutus/php/math/getrandmax.js.map new file mode 100644 index 0000000..2e5ab88 --- /dev/null +++ b/node_modules/locutus/php/math/getrandmax.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/getrandmax.js"],"names":["module","exports","getrandmax"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,UAAT,GAAuB;AACtC;AACA;AACA;AACA;;AAEA,SAAO,UAAP;AACD,CAPD","file":"getrandmax.js","sourcesContent":["module.exports = function getrandmax () {\n // discuss at: http://locutus.io/php/getrandmax/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: getrandmax()\n // returns 1: 2147483647\n\n return 2147483647\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/hexdec.js b/node_modules/locutus/php/math/hexdec.js new file mode 100644 index 0000000..50026ac --- /dev/null +++ b/node_modules/locutus/php/math/hexdec.js @@ -0,0 +1,14 @@ +'use strict'; + +module.exports = function hexdec(hexString) { + // discuss at: http://locutus.io/php/hexdec/ + // original by: Philippe Baumann + // example 1: hexdec('that') + // returns 1: 10 + // example 2: hexdec('a0') + // returns 2: 160 + + hexString = (hexString + '').replace(/[^a-f0-9]/gi, ''); + return parseInt(hexString, 16); +}; +//# sourceMappingURL=hexdec.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/hexdec.js.map b/node_modules/locutus/php/math/hexdec.js.map new file mode 100644 index 0000000..8f9fa1e --- /dev/null +++ b/node_modules/locutus/php/math/hexdec.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/hexdec.js"],"names":["module","exports","hexdec","hexString","replace","parseInt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,SAAjB,EAA4B;AAC3C;AACA;AACA;AACA;AACA;AACA;;AAEAA,cAAY,CAACA,YAAY,EAAb,EAAiBC,OAAjB,CAAyB,aAAzB,EAAwC,EAAxC,CAAZ;AACA,SAAOC,SAASF,SAAT,EAAoB,EAApB,CAAP;AACD,CAVD","file":"hexdec.js","sourcesContent":["module.exports = function hexdec (hexString) {\n // discuss at: http://locutus.io/php/hexdec/\n // original by: Philippe Baumann\n // example 1: hexdec('that')\n // returns 1: 10\n // example 2: hexdec('a0')\n // returns 2: 160\n\n hexString = (hexString + '').replace(/[^a-f0-9]/gi, '')\n return parseInt(hexString, 16)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/hypot.js b/node_modules/locutus/php/math/hypot.js new file mode 100644 index 0000000..40b9197 --- /dev/null +++ b/node_modules/locutus/php/math/hypot.js @@ -0,0 +1,21 @@ +"use strict"; + +module.exports = function hypot(x, y) { + // discuss at: http://locutus.io/php/hypot/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // imprived by: Robert Eisele (http://www.xarg.org/) + // example 1: hypot(3, 4) + // returns 1: 5 + // example 2: hypot([], 'a') + // returns 2: null + + x = Math.abs(x); + y = Math.abs(y); + + var t = Math.min(x, y); + x = Math.max(x, y); + t = t / x; + + return x * Math.sqrt(1 + t * t) || null; +}; +//# sourceMappingURL=hypot.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/hypot.js.map b/node_modules/locutus/php/math/hypot.js.map new file mode 100644 index 0000000..a5b8feb --- /dev/null +++ b/node_modules/locutus/php/math/hypot.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/hypot.js"],"names":["module","exports","hypot","x","y","Math","abs","t","min","max","sqrt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,CAAhB,EAAmBC,CAAnB,EAAsB;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEAD,MAAIE,KAAKC,GAAL,CAASH,CAAT,CAAJ;AACAC,MAAIC,KAAKC,GAAL,CAASF,CAAT,CAAJ;;AAEA,MAAIG,IAAIF,KAAKG,GAAL,CAASL,CAAT,EAAYC,CAAZ,CAAR;AACAD,MAAIE,KAAKI,GAAL,CAASN,CAAT,EAAYC,CAAZ,CAAJ;AACAG,MAAIA,IAAIJ,CAAR;;AAEA,SAAOA,IAAIE,KAAKK,IAAL,CAAU,IAAIH,IAAIA,CAAlB,CAAJ,IAA4B,IAAnC;AACD,CAjBD","file":"hypot.js","sourcesContent":["module.exports = function hypot (x, y) {\n // discuss at: http://locutus.io/php/hypot/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // imprived by: Robert Eisele (http://www.xarg.org/)\n // example 1: hypot(3, 4)\n // returns 1: 5\n // example 2: hypot([], 'a')\n // returns 2: null\n\n x = Math.abs(x)\n y = Math.abs(y)\n\n var t = Math.min(x, y)\n x = Math.max(x, y)\n t = t / x\n\n return x * Math.sqrt(1 + t * t) || null\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/index.js b/node_modules/locutus/php/math/index.js new file mode 100644 index 0000000..05d4777 --- /dev/null +++ b/node_modules/locutus/php/math/index.js @@ -0,0 +1,49 @@ +'use strict'; + +module.exports['abs'] = require('./abs'); +module.exports['acos'] = require('./acos'); +module.exports['acosh'] = require('./acosh'); +module.exports['asin'] = require('./asin'); +module.exports['asinh'] = require('./asinh'); +module.exports['atan'] = require('./atan'); +module.exports['atan2'] = require('./atan2'); +module.exports['atanh'] = require('./atanh'); +module.exports['base_convert'] = require('./base_convert'); +module.exports['bindec'] = require('./bindec'); +module.exports['ceil'] = require('./ceil'); +module.exports['cos'] = require('./cos'); +module.exports['cosh'] = require('./cosh'); +module.exports['decbin'] = require('./decbin'); +module.exports['dechex'] = require('./dechex'); +module.exports['decoct'] = require('./decoct'); +module.exports['deg2rad'] = require('./deg2rad'); +module.exports['exp'] = require('./exp'); +module.exports['expm1'] = require('./expm1'); +module.exports['floor'] = require('./floor'); +module.exports['fmod'] = require('./fmod'); +module.exports['getrandmax'] = require('./getrandmax'); +module.exports['hexdec'] = require('./hexdec'); +module.exports['hypot'] = require('./hypot'); +module.exports['is_finite'] = require('./is_finite'); +module.exports['is_infinite'] = require('./is_infinite'); +module.exports['is_nan'] = require('./is_nan'); +module.exports['lcg_value'] = require('./lcg_value'); +module.exports['log'] = require('./log'); +module.exports['log10'] = require('./log10'); +module.exports['log1p'] = require('./log1p'); +module.exports['max'] = require('./max'); +module.exports['min'] = require('./min'); +module.exports['mt_getrandmax'] = require('./mt_getrandmax'); +module.exports['mt_rand'] = require('./mt_rand'); +module.exports['octdec'] = require('./octdec'); +module.exports['pi'] = require('./pi'); +module.exports['pow'] = require('./pow'); +module.exports['rad2deg'] = require('./rad2deg'); +module.exports['rand'] = require('./rand'); +module.exports['round'] = require('./round'); +module.exports['sin'] = require('./sin'); +module.exports['sinh'] = require('./sinh'); +module.exports['sqrt'] = require('./sqrt'); +module.exports['tan'] = require('./tan'); +module.exports['tanh'] = require('./tanh'); +//# sourceMappingURL=index.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/index.js.map b/node_modules/locutus/php/math/index.js.map new file mode 100644 index 0000000..bfe1166 --- /dev/null +++ b/node_modules/locutus/php/math/index.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/index.js"],"names":["module","exports","require"],"mappings":"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","file":"index.js","sourcesContent":["module.exports['abs'] = require('./abs')\nmodule.exports['acos'] = require('./acos')\nmodule.exports['acosh'] = require('./acosh')\nmodule.exports['asin'] = require('./asin')\nmodule.exports['asinh'] = require('./asinh')\nmodule.exports['atan'] = require('./atan')\nmodule.exports['atan2'] = require('./atan2')\nmodule.exports['atanh'] = require('./atanh')\nmodule.exports['base_convert'] = require('./base_convert')\nmodule.exports['bindec'] = require('./bindec')\nmodule.exports['ceil'] = require('./ceil')\nmodule.exports['cos'] = require('./cos')\nmodule.exports['cosh'] = require('./cosh')\nmodule.exports['decbin'] = require('./decbin')\nmodule.exports['dechex'] = require('./dechex')\nmodule.exports['decoct'] = require('./decoct')\nmodule.exports['deg2rad'] = require('./deg2rad')\nmodule.exports['exp'] = require('./exp')\nmodule.exports['expm1'] = require('./expm1')\nmodule.exports['floor'] = require('./floor')\nmodule.exports['fmod'] = require('./fmod')\nmodule.exports['getrandmax'] = require('./getrandmax')\nmodule.exports['hexdec'] = require('./hexdec')\nmodule.exports['hypot'] = require('./hypot')\nmodule.exports['is_finite'] = require('./is_finite')\nmodule.exports['is_infinite'] = require('./is_infinite')\nmodule.exports['is_nan'] = require('./is_nan')\nmodule.exports['lcg_value'] = require('./lcg_value')\nmodule.exports['log'] = require('./log')\nmodule.exports['log10'] = require('./log10')\nmodule.exports['log1p'] = require('./log1p')\nmodule.exports['max'] = require('./max')\nmodule.exports['min'] = require('./min')\nmodule.exports['mt_getrandmax'] = require('./mt_getrandmax')\nmodule.exports['mt_rand'] = require('./mt_rand')\nmodule.exports['octdec'] = require('./octdec')\nmodule.exports['pi'] = require('./pi')\nmodule.exports['pow'] = require('./pow')\nmodule.exports['rad2deg'] = require('./rad2deg')\nmodule.exports['rand'] = require('./rand')\nmodule.exports['round'] = require('./round')\nmodule.exports['sin'] = require('./sin')\nmodule.exports['sinh'] = require('./sinh')\nmodule.exports['sqrt'] = require('./sqrt')\nmodule.exports['tan'] = require('./tan')\nmodule.exports['tanh'] = require('./tanh')\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/is_finite.js b/node_modules/locutus/php/math/is_finite.js new file mode 100644 index 0000000..f292be9 --- /dev/null +++ b/node_modules/locutus/php/math/is_finite.js @@ -0,0 +1,36 @@ +'use strict'; + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +module.exports = function is_finite(val) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/is_finite/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: is_finite(Infinity) + // returns 1: false + // example 2: is_finite(-Infinity) + // returns 2: false + // example 3: is_finite(0) + // returns 3: true + + var warningType = ''; + + if (val === Infinity || val === -Infinity) { + return false; + } + + // Some warnings for maximum PHP compatibility + if ((typeof val === 'undefined' ? 'undefined' : _typeof(val)) === 'object') { + warningType = Object.prototype.toString.call(val) === '[object Array]' ? 'array' : 'object'; + } else if (typeof val === 'string' && !val.match(/^[+-]?\d/)) { + // simulate PHP's behaviour: '-9a' doesn't give a warning, but 'a9' does. + warningType = 'string'; + } + if (warningType) { + var msg = 'Warning: is_finite() expects parameter 1 to be double, ' + warningType + ' given'; + throw new Error(msg); + } + + return true; +}; +//# sourceMappingURL=is_finite.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/is_finite.js.map b/node_modules/locutus/php/math/is_finite.js.map new file mode 100644 index 0000000..40faf73 --- /dev/null +++ b/node_modules/locutus/php/math/is_finite.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/is_finite.js"],"names":["module","exports","is_finite","val","warningType","Infinity","Object","prototype","toString","call","match","msg","Error"],"mappings":";;;;AAAAA,OAAOC,OAAP,GAAiB,SAASC,SAAT,CAAoBC,GAApB,EAAyB;AAAE;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,cAAc,EAAlB;;AAEA,MAAID,QAAQE,QAAR,IAAoBF,QAAQ,CAACE,QAAjC,EAA2C;AACzC,WAAO,KAAP;AACD;;AAED;AACA,MAAI,QAAOF,GAAP,yCAAOA,GAAP,OAAe,QAAnB,EAA6B;AAC3BC,kBAAeE,OAAOC,SAAP,CAAiBC,QAAjB,CAA0BC,IAA1B,CAA+BN,GAA/B,MAAwC,gBAAxC,GAA2D,OAA3D,GAAqE,QAApF;AACD,GAFD,MAEO,IAAI,OAAOA,GAAP,KAAe,QAAf,IAA2B,CAACA,IAAIO,KAAJ,CAAU,UAAV,CAAhC,EAAuD;AAC5D;AACAN,kBAAc,QAAd;AACD;AACD,MAAIA,WAAJ,EAAiB;AACf,QAAIO,MAAM,4DAA4DP,WAA5D,GAA0E,QAApF;AACA,UAAM,IAAIQ,KAAJ,CAAUD,GAAV,CAAN;AACD;;AAED,SAAO,IAAP;AACD,CA7BD","file":"is_finite.js","sourcesContent":["module.exports = function is_finite (val) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/is_finite/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: is_finite(Infinity)\n // returns 1: false\n // example 2: is_finite(-Infinity)\n // returns 2: false\n // example 3: is_finite(0)\n // returns 3: true\n\n var warningType = ''\n\n if (val === Infinity || val === -Infinity) {\n return false\n }\n\n // Some warnings for maximum PHP compatibility\n if (typeof val === 'object') {\n warningType = (Object.prototype.toString.call(val) === '[object Array]' ? 'array' : 'object')\n } else if (typeof val === 'string' && !val.match(/^[+-]?\\d/)) {\n // simulate PHP's behaviour: '-9a' doesn't give a warning, but 'a9' does.\n warningType = 'string'\n }\n if (warningType) {\n var msg = 'Warning: is_finite() expects parameter 1 to be double, ' + warningType + ' given'\n throw new Error(msg)\n }\n\n return true\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/is_infinite.js b/node_modules/locutus/php/math/is_infinite.js new file mode 100644 index 0000000..1460d51 --- /dev/null +++ b/node_modules/locutus/php/math/is_infinite.js @@ -0,0 +1,36 @@ +'use strict'; + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +module.exports = function is_infinite(val) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/is_infinite/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: is_infinite(Infinity) + // returns 1: true + // example 2: is_infinite(-Infinity) + // returns 2: true + // example 3: is_infinite(0) + // returns 3: false + + var warningType = ''; + + if (val === Infinity || val === -Infinity) { + return true; + } + + // Some warnings for maximum PHP compatibility + if ((typeof val === 'undefined' ? 'undefined' : _typeof(val)) === 'object') { + warningType = Object.prototype.toString.call(val) === '[object Array]' ? 'array' : 'object'; + } else if (typeof val === 'string' && !val.match(/^[+-]?\d/)) { + // simulate PHP's behaviour: '-9a' doesn't give a warning, but 'a9' does. + warningType = 'string'; + } + if (warningType) { + var msg = 'Warning: is_infinite() expects parameter 1 to be double, ' + warningType + ' given'; + throw new Error(msg); + } + + return false; +}; +//# sourceMappingURL=is_infinite.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/is_infinite.js.map b/node_modules/locutus/php/math/is_infinite.js.map new file mode 100644 index 0000000..46e6ba0 --- /dev/null +++ b/node_modules/locutus/php/math/is_infinite.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/is_infinite.js"],"names":["module","exports","is_infinite","val","warningType","Infinity","Object","prototype","toString","call","match","msg","Error"],"mappings":";;;;AAAAA,OAAOC,OAAP,GAAiB,SAASC,WAAT,CAAsBC,GAAtB,EAA2B;AAAE;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,cAAc,EAAlB;;AAEA,MAAID,QAAQE,QAAR,IAAoBF,QAAQ,CAACE,QAAjC,EAA2C;AACzC,WAAO,IAAP;AACD;;AAED;AACA,MAAI,QAAOF,GAAP,yCAAOA,GAAP,OAAe,QAAnB,EAA6B;AAC3BC,kBAAeE,OAAOC,SAAP,CAAiBC,QAAjB,CAA0BC,IAA1B,CAA+BN,GAA/B,MAAwC,gBAAxC,GAA2D,OAA3D,GAAqE,QAApF;AACD,GAFD,MAEO,IAAI,OAAOA,GAAP,KAAe,QAAf,IAA2B,CAACA,IAAIO,KAAJ,CAAU,UAAV,CAAhC,EAAuD;AAC5D;AACAN,kBAAc,QAAd;AACD;AACD,MAAIA,WAAJ,EAAiB;AACf,QAAIO,MAAM,8DAA8DP,WAA9D,GAA4E,QAAtF;AACA,UAAM,IAAIQ,KAAJ,CAAUD,GAAV,CAAN;AACD;;AAED,SAAO,KAAP;AACD,CA7BD","file":"is_infinite.js","sourcesContent":["module.exports = function is_infinite (val) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/is_infinite/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: is_infinite(Infinity)\n // returns 1: true\n // example 2: is_infinite(-Infinity)\n // returns 2: true\n // example 3: is_infinite(0)\n // returns 3: false\n\n var warningType = ''\n\n if (val === Infinity || val === -Infinity) {\n return true\n }\n\n // Some warnings for maximum PHP compatibility\n if (typeof val === 'object') {\n warningType = (Object.prototype.toString.call(val) === '[object Array]' ? 'array' : 'object')\n } else if (typeof val === 'string' && !val.match(/^[+-]?\\d/)) {\n // simulate PHP's behaviour: '-9a' doesn't give a warning, but 'a9' does.\n warningType = 'string'\n }\n if (warningType) {\n var msg = 'Warning: is_infinite() expects parameter 1 to be double, ' + warningType + ' given'\n throw new Error(msg)\n }\n\n return false\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/is_nan.js b/node_modules/locutus/php/math/is_nan.js new file mode 100644 index 0000000..58154d1 --- /dev/null +++ b/node_modules/locutus/php/math/is_nan.js @@ -0,0 +1,34 @@ +'use strict'; + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +module.exports = function is_nan(val) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/is_nan/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // input by: Robin + // example 1: is_nan(NaN) + // returns 1: true + // example 2: is_nan(0) + // returns 2: false + + var warningType = ''; + + if (typeof val === 'number' && isNaN(val)) { + return true; + } + + // Some errors for maximum PHP compatibility + if ((typeof val === 'undefined' ? 'undefined' : _typeof(val)) === 'object') { + warningType = Object.prototype.toString.call(val) === '[object Array]' ? 'array' : 'object'; + } else if (typeof val === 'string' && !val.match(/^[+-]?\d/)) { + // simulate PHP's behaviour: '-9a' doesn't give a warning, but 'a9' does. + warningType = 'string'; + } + if (warningType) { + throw new Error('Warning: is_nan() expects parameter 1 to be double, ' + warningType + ' given'); + } + + return false; +}; +//# sourceMappingURL=is_nan.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/is_nan.js.map b/node_modules/locutus/php/math/is_nan.js.map new file mode 100644 index 0000000..c798bd0 --- /dev/null +++ b/node_modules/locutus/php/math/is_nan.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/is_nan.js"],"names":["module","exports","is_nan","val","warningType","isNaN","Object","prototype","toString","call","match","Error"],"mappings":";;;;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,GAAjB,EAAsB;AAAE;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,cAAc,EAAlB;;AAEA,MAAI,OAAOD,GAAP,KAAe,QAAf,IAA2BE,MAAMF,GAAN,CAA/B,EAA2C;AACzC,WAAO,IAAP;AACD;;AAED;AACA,MAAI,QAAOA,GAAP,yCAAOA,GAAP,OAAe,QAAnB,EAA6B;AAC3BC,kBAAeE,OAAOC,SAAP,CAAiBC,QAAjB,CAA0BC,IAA1B,CAA+BN,GAA/B,MAAwC,gBAAxC,GAA2D,OAA3D,GAAqE,QAApF;AACD,GAFD,MAEO,IAAI,OAAOA,GAAP,KAAe,QAAf,IAA2B,CAACA,IAAIO,KAAJ,CAAU,UAAV,CAAhC,EAAuD;AAC5D;AACAN,kBAAc,QAAd;AACD;AACD,MAAIA,WAAJ,EAAiB;AACf,UAAM,IAAIO,KAAJ,CAAU,yDAAyDP,WAAzD,GAAuE,QAAjF,CAAN;AACD;;AAED,SAAO,KAAP;AACD,CA3BD","file":"is_nan.js","sourcesContent":["module.exports = function is_nan (val) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/is_nan/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // input by: Robin\n // example 1: is_nan(NaN)\n // returns 1: true\n // example 2: is_nan(0)\n // returns 2: false\n\n var warningType = ''\n\n if (typeof val === 'number' && isNaN(val)) {\n return true\n }\n\n // Some errors for maximum PHP compatibility\n if (typeof val === 'object') {\n warningType = (Object.prototype.toString.call(val) === '[object Array]' ? 'array' : 'object')\n } else if (typeof val === 'string' && !val.match(/^[+-]?\\d/)) {\n // simulate PHP's behaviour: '-9a' doesn't give a warning, but 'a9' does.\n warningType = 'string'\n }\n if (warningType) {\n throw new Error('Warning: is_nan() expects parameter 1 to be double, ' + warningType + ' given')\n }\n\n return false\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/lcg_value.js b/node_modules/locutus/php/math/lcg_value.js new file mode 100644 index 0000000..17afc8c --- /dev/null +++ b/node_modules/locutus/php/math/lcg_value.js @@ -0,0 +1,13 @@ +"use strict"; + +module.exports = function lcg_value() { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/lcg_value/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: var $rnd = lcg_value() + // example 1: var $result = $rnd >= 0 && $rnd <= 1 + // returns 1: true + + return Math.random(); +}; +//# sourceMappingURL=lcg_value.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/lcg_value.js.map b/node_modules/locutus/php/math/lcg_value.js.map new file mode 100644 index 0000000..89cbf41 --- /dev/null +++ b/node_modules/locutus/php/math/lcg_value.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/lcg_value.js"],"names":["module","exports","lcg_value","Math","random"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,SAAT,GAAsB;AAAE;AACvC;AACA;AACA;AACA;AACA;;AAEA,SAAOC,KAAKC,MAAL,EAAP;AACD,CARD","file":"lcg_value.js","sourcesContent":["module.exports = function lcg_value () { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/lcg_value/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: var $rnd = lcg_value()\n // example 1: var $result = $rnd >= 0 && $rnd <= 1\n // returns 1: true\n\n return Math.random()\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/log.js b/node_modules/locutus/php/math/log.js new file mode 100644 index 0000000..6846759 --- /dev/null +++ b/node_modules/locutus/php/math/log.js @@ -0,0 +1,12 @@ +'use strict'; + +module.exports = function log(arg, base) { + // discuss at: http://locutus.io/php/log/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: Brett Zamir (http://brett-zamir.me) + // example 1: log(8723321.4, 7) + // returns 1: 8.212871815082147 + + return typeof base === 'undefined' ? Math.log(arg) : Math.log(arg) / Math.log(base); +}; +//# sourceMappingURL=log.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/log.js.map b/node_modules/locutus/php/math/log.js.map new file mode 100644 index 0000000..77573e8 --- /dev/null +++ b/node_modules/locutus/php/math/log.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/log.js"],"names":["module","exports","log","arg","base","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,GAAT,CAAcC,GAAd,EAAmBC,IAAnB,EAAyB;AACxC;AACA;AACA;AACA;AACA;;AAEA,SAAQ,OAAOA,IAAP,KAAgB,WAAjB,GACHC,KAAKH,GAAL,CAASC,GAAT,CADG,GAEHE,KAAKH,GAAL,CAASC,GAAT,IAAgBE,KAAKH,GAAL,CAASE,IAAT,CAFpB;AAGD,CAVD","file":"log.js","sourcesContent":["module.exports = function log (arg, base) {\n // discuss at: http://locutus.io/php/log/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // example 1: log(8723321.4, 7)\n // returns 1: 8.212871815082147\n\n return (typeof base === 'undefined')\n ? Math.log(arg)\n : Math.log(arg) / Math.log(base)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/log10.js b/node_modules/locutus/php/math/log10.js new file mode 100644 index 0000000..3c36309 --- /dev/null +++ b/node_modules/locutus/php/math/log10.js @@ -0,0 +1,16 @@ +"use strict"; + +module.exports = function log10(arg) { + // discuss at: http://locutus.io/php/log10/ + // original by: Philip Peterson + // improved by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: Tod Gentille + // improved by: Brett Zamir (http://brett-zamir.me) + // example 1: log10(10) + // returns 1: 1 + // example 2: log10(1) + // returns 2: 0 + + return Math.log(arg) / 2.302585092994046; // Math.LN10 +}; +//# sourceMappingURL=log10.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/log10.js.map b/node_modules/locutus/php/math/log10.js.map new file mode 100644 index 0000000..98e2889 --- /dev/null +++ b/node_modules/locutus/php/math/log10.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/log10.js"],"names":["module","exports","log10","arg","Math","log"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,GAAhB,EAAqB;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAOC,KAAKC,GAAL,CAASF,GAAT,IAAgB,iBAAvB,CAXoC,CAWK;AAC1C,CAZD","file":"log10.js","sourcesContent":["module.exports = function log10 (arg) {\n // discuss at: http://locutus.io/php/log10/\n // original by: Philip Peterson\n // improved by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: Tod Gentille\n // improved by: Brett Zamir (http://brett-zamir.me)\n // example 1: log10(10)\n // returns 1: 1\n // example 2: log10(1)\n // returns 2: 0\n\n return Math.log(arg) / 2.302585092994046 // Math.LN10\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/log1p.js b/node_modules/locutus/php/math/log1p.js new file mode 100644 index 0000000..9bcede5 --- /dev/null +++ b/node_modules/locutus/php/math/log1p.js @@ -0,0 +1,28 @@ +'use strict'; + +module.exports = function log1p(x) { + // discuss at: http://locutus.io/php/log1p/ + // original by: Brett Zamir (http://brett-zamir.me) + // improved by: Robert Eisele (http://www.xarg.org/) + // note 1: Precision 'n' can be adjusted as desired + // example 1: log1p(1e-15) + // returns 1: 9.999999999999995e-16 + + var ret = 0; + // degree of precision + var n = 50; + + if (x <= -1) { + // JavaScript style would be to return Number.NEGATIVE_INFINITY + return '-INF'; + } + if (x < 0 || x > 1) { + return Math.log(1 + x); + } + for (var i = 1; i < n; i++) { + ret += Math.pow(-x, i) / i; + } + + return -ret; +}; +//# sourceMappingURL=log1p.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/log1p.js.map b/node_modules/locutus/php/math/log1p.js.map new file mode 100644 index 0000000..73d2962 --- /dev/null +++ b/node_modules/locutus/php/math/log1p.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/log1p.js"],"names":["module","exports","log1p","x","ret","n","Math","log","i","pow"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,CAAhB,EAAmB;AAClC;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,MAAM,CAAV;AACA;AACA,MAAIC,IAAI,EAAR;;AAEA,MAAIF,KAAK,CAAC,CAAV,EAAa;AACX;AACA,WAAO,MAAP;AACD;AACD,MAAIA,IAAI,CAAJ,IAASA,IAAI,CAAjB,EAAoB;AAClB,WAAOG,KAAKC,GAAL,CAAS,IAAIJ,CAAb,CAAP;AACD;AACD,OAAK,IAAIK,IAAI,CAAb,EAAgBA,IAAIH,CAApB,EAAuBG,GAAvB,EAA4B;AAC1BJ,WAAOE,KAAKG,GAAL,CAAS,CAACN,CAAV,EAAaK,CAAb,IAAkBA,CAAzB;AACD;;AAED,SAAO,CAACJ,GAAR;AACD,CAxBD","file":"log1p.js","sourcesContent":["module.exports = function log1p (x) {\n // discuss at: http://locutus.io/php/log1p/\n // original by: Brett Zamir (http://brett-zamir.me)\n // improved by: Robert Eisele (http://www.xarg.org/)\n // note 1: Precision 'n' can be adjusted as desired\n // example 1: log1p(1e-15)\n // returns 1: 9.999999999999995e-16\n\n var ret = 0\n // degree of precision\n var n = 50\n\n if (x <= -1) {\n // JavaScript style would be to return Number.NEGATIVE_INFINITY\n return '-INF'\n }\n if (x < 0 || x > 1) {\n return Math.log(1 + x)\n }\n for (var i = 1; i < n; i++) {\n ret += Math.pow(-x, i) / i\n }\n\n return -ret\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/max.js b/node_modules/locutus/php/math/max.js new file mode 100644 index 0000000..8e55173 --- /dev/null +++ b/node_modules/locutus/php/math/max.js @@ -0,0 +1,119 @@ +'use strict'; + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +module.exports = function max() { + // discuss at: http://locutus.io/php/max/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // revised by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: Jack + // note 1: Long code cause we're aiming for maximum PHP compatibility + // example 1: max(1, 3, 5, 6, 7) + // returns 1: 7 + // example 2: max([2, 4, 5]) + // returns 2: 5 + // example 3: max(0, 'hello') + // returns 3: 0 + // example 4: max('hello', 0) + // returns 4: 'hello' + // example 5: max(-1, 'hello') + // returns 5: 'hello' + // example 6: max([2, 4, 8], [2, 5, 7]) + // returns 6: [2, 5, 7] + + var ar; + var retVal; + var i = 0; + var n = 0; + var argv = arguments; + var argc = argv.length; + var _obj2Array = function _obj2Array(obj) { + if (Object.prototype.toString.call(obj) === '[object Array]') { + return obj; + } else { + var ar = []; + for (var i in obj) { + if (obj.hasOwnProperty(i)) { + ar.push(obj[i]); + } + } + return ar; + } + }; + var _compare = function _compare(current, next) { + var i = 0; + var n = 0; + var tmp = 0; + var nl = 0; + var cl = 0; + + if (current === next) { + return 0; + } else if ((typeof current === 'undefined' ? 'undefined' : _typeof(current)) === 'object') { + if ((typeof next === 'undefined' ? 'undefined' : _typeof(next)) === 'object') { + current = _obj2Array(current); + next = _obj2Array(next); + cl = current.length; + nl = next.length; + if (nl > cl) { + return 1; + } else if (nl < cl) { + return -1; + } + for (i = 0, n = cl; i < n; ++i) { + tmp = _compare(current[i], next[i]); + if (tmp === 1) { + return 1; + } else if (tmp === -1) { + return -1; + } + } + return 0; + } + return -1; + } else if ((typeof next === 'undefined' ? 'undefined' : _typeof(next)) === 'object') { + return 1; + } else if (isNaN(next) && !isNaN(current)) { + if (current === 0) { + return 0; + } + return current < 0 ? 1 : -1; + } else if (isNaN(current) && !isNaN(next)) { + if (next === 0) { + return 0; + } + return next > 0 ? 1 : -1; + } + + if (next === current) { + return 0; + } + + return next > current ? 1 : -1; + }; + + if (argc === 0) { + throw new Error('At least one value should be passed to max()'); + } else if (argc === 1) { + if (_typeof(argv[0]) === 'object') { + ar = _obj2Array(argv[0]); + } else { + throw new Error('Wrong parameter count for max()'); + } + if (ar.length === 0) { + throw new Error('Array must contain at least one element for max()'); + } + } else { + ar = argv; + } + + retVal = ar[0]; + for (i = 1, n = ar.length; i < n; ++i) { + if (_compare(retVal, ar[i]) === 1) { + retVal = ar[i]; + } + } + + return retVal; +}; +//# sourceMappingURL=max.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/max.js.map b/node_modules/locutus/php/math/max.js.map new file mode 100644 index 0000000..003ad70 --- /dev/null +++ b/node_modules/locutus/php/math/max.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/max.js"],"names":["module","exports","max","ar","retVal","i","n","argv","arguments","argc","length","_obj2Array","obj","Object","prototype","toString","call","hasOwnProperty","push","_compare","current","next","tmp","nl","cl","isNaN","Error"],"mappings":"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","file":"max.js","sourcesContent":["module.exports = function max () {\n // discuss at: http://locutus.io/php/max/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // revised by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: Jack\n // note 1: Long code cause we're aiming for maximum PHP compatibility\n // example 1: max(1, 3, 5, 6, 7)\n // returns 1: 7\n // example 2: max([2, 4, 5])\n // returns 2: 5\n // example 3: max(0, 'hello')\n // returns 3: 0\n // example 4: max('hello', 0)\n // returns 4: 'hello'\n // example 5: max(-1, 'hello')\n // returns 5: 'hello'\n // example 6: max([2, 4, 8], [2, 5, 7])\n // returns 6: [2, 5, 7]\n\n var ar\n var retVal\n var i = 0\n var n = 0\n var argv = arguments\n var argc = argv.length\n var _obj2Array = function (obj) {\n if (Object.prototype.toString.call(obj) === '[object Array]') {\n return obj\n } else {\n var ar = []\n for (var i in obj) {\n if (obj.hasOwnProperty(i)) {\n ar.push(obj[i])\n }\n }\n return ar\n }\n }\n var _compare = function (current, next) {\n var i = 0\n var n = 0\n var tmp = 0\n var nl = 0\n var cl = 0\n\n if (current === next) {\n return 0\n } else if (typeof current === 'object') {\n if (typeof next === 'object') {\n current = _obj2Array(current)\n next = _obj2Array(next)\n cl = current.length\n nl = next.length\n if (nl > cl) {\n return 1\n } else if (nl < cl) {\n return -1\n }\n for (i = 0, n = cl; i < n; ++i) {\n tmp = _compare(current[i], next[i])\n if (tmp === 1) {\n return 1\n } else if (tmp === -1) {\n return -1\n }\n }\n return 0\n }\n return -1\n } else if (typeof next === 'object') {\n return 1\n } else if (isNaN(next) && !isNaN(current)) {\n if (current === 0) {\n return 0\n }\n return (current < 0 ? 1 : -1)\n } else if (isNaN(current) && !isNaN(next)) {\n if (next === 0) {\n return 0\n }\n return (next > 0 ? 1 : -1)\n }\n\n if (next === current) {\n return 0\n }\n\n return (next > current ? 1 : -1)\n }\n\n if (argc === 0) {\n throw new Error('At least one value should be passed to max()')\n } else if (argc === 1) {\n if (typeof argv[0] === 'object') {\n ar = _obj2Array(argv[0])\n } else {\n throw new Error('Wrong parameter count for max()')\n }\n if (ar.length === 0) {\n throw new Error('Array must contain at least one element for max()')\n }\n } else {\n ar = argv\n }\n\n retVal = ar[0]\n for (i = 1, n = ar.length; i < n; ++i) {\n if (_compare(retVal, ar[i]) === 1) {\n retVal = ar[i]\n }\n }\n\n return retVal\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/min.js b/node_modules/locutus/php/math/min.js new file mode 100644 index 0000000..40d2e29 --- /dev/null +++ b/node_modules/locutus/php/math/min.js @@ -0,0 +1,121 @@ +'use strict'; + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +module.exports = function min() { + // discuss at: http://locutus.io/php/min/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // revised by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: Jack + // note 1: Long code cause we're aiming for maximum PHP compatibility + // example 1: min(1, 3, 5, 6, 7) + // returns 1: 1 + // example 2: min([2, 4, 5]) + // returns 2: 2 + // example 3: min(0, 'hello') + // returns 3: 0 + // example 4: min('hello', 0) + // returns 4: 'hello' + // example 5: min(-1, 'hello') + // returns 5: -1 + // example 6: min([2, 4, 8], [2, 5, 7]) + // returns 6: [2, 4, 8] + + var ar; + var retVal; + var i = 0; + var n = 0; + var argv = arguments; + var argc = argv.length; + var _obj2Array = function _obj2Array(obj) { + if (Object.prototype.toString.call(obj) === '[object Array]') { + return obj; + } + var ar = []; + for (var i in obj) { + if (obj.hasOwnProperty(i)) { + ar.push(obj[i]); + } + } + return ar; + }; + + var _compare = function _compare(current, next) { + var i = 0; + var n = 0; + var tmp = 0; + var nl = 0; + var cl = 0; + + if (current === next) { + return 0; + } else if ((typeof current === 'undefined' ? 'undefined' : _typeof(current)) === 'object') { + if ((typeof next === 'undefined' ? 'undefined' : _typeof(next)) === 'object') { + current = _obj2Array(current); + next = _obj2Array(next); + cl = current.length; + nl = next.length; + if (nl > cl) { + return 1; + } else if (nl < cl) { + return -1; + } + for (i = 0, n = cl; i < n; ++i) { + tmp = _compare(current[i], next[i]); + if (tmp === 1) { + return 1; + } else if (tmp === -1) { + return -1; + } + } + return 0; + } + return -1; + } else if ((typeof next === 'undefined' ? 'undefined' : _typeof(next)) === 'object') { + return 1; + } else if (isNaN(next) && !isNaN(current)) { + if (current === 0) { + return 0; + } + return current < 0 ? 1 : -1; + } else if (isNaN(current) && !isNaN(next)) { + if (next === 0) { + return 0; + } + return next > 0 ? 1 : -1; + } + + if (next === current) { + return 0; + } + + return next > current ? 1 : -1; + }; + + if (argc === 0) { + throw new Error('At least one value should be passed to min()'); + } else if (argc === 1) { + if (_typeof(argv[0]) === 'object') { + ar = _obj2Array(argv[0]); + } else { + throw new Error('Wrong parameter count for min()'); + } + + if (ar.length === 0) { + throw new Error('Array must contain at least one element for min()'); + } + } else { + ar = argv; + } + + retVal = ar[0]; + + for (i = 1, n = ar.length; i < n; ++i) { + if (_compare(retVal, ar[i]) === -1) { + retVal = ar[i]; + } + } + + return retVal; +}; +//# sourceMappingURL=min.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/min.js.map b/node_modules/locutus/php/math/min.js.map new file mode 100644 index 0000000..0fdaf9c --- /dev/null +++ b/node_modules/locutus/php/math/min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/min.js"],"names":["module","exports","min","ar","retVal","i","n","argv","arguments","argc","length","_obj2Array","obj","Object","prototype","toString","call","hasOwnProperty","push","_compare","current","next","tmp","nl","cl","isNaN","Error"],"mappings":"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","file":"min.js","sourcesContent":["module.exports = function min () {\n // discuss at: http://locutus.io/php/min/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // revised by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: Jack\n // note 1: Long code cause we're aiming for maximum PHP compatibility\n // example 1: min(1, 3, 5, 6, 7)\n // returns 1: 1\n // example 2: min([2, 4, 5])\n // returns 2: 2\n // example 3: min(0, 'hello')\n // returns 3: 0\n // example 4: min('hello', 0)\n // returns 4: 'hello'\n // example 5: min(-1, 'hello')\n // returns 5: -1\n // example 6: min([2, 4, 8], [2, 5, 7])\n // returns 6: [2, 4, 8]\n\n var ar\n var retVal\n var i = 0\n var n = 0\n var argv = arguments\n var argc = argv.length\n var _obj2Array = function (obj) {\n if (Object.prototype.toString.call(obj) === '[object Array]') {\n return obj\n }\n var ar = []\n for (var i in obj) {\n if (obj.hasOwnProperty(i)) {\n ar.push(obj[i])\n }\n }\n return ar\n }\n\n var _compare = function (current, next) {\n var i = 0\n var n = 0\n var tmp = 0\n var nl = 0\n var cl = 0\n\n if (current === next) {\n return 0\n } else if (typeof current === 'object') {\n if (typeof next === 'object') {\n current = _obj2Array(current)\n next = _obj2Array(next)\n cl = current.length\n nl = next.length\n if (nl > cl) {\n return 1\n } else if (nl < cl) {\n return -1\n }\n for (i = 0, n = cl; i < n; ++i) {\n tmp = _compare(current[i], next[i])\n if (tmp === 1) {\n return 1\n } else if (tmp === -1) {\n return -1\n }\n }\n return 0\n }\n return -1\n } else if (typeof next === 'object') {\n return 1\n } else if (isNaN(next) && !isNaN(current)) {\n if (current === 0) {\n return 0\n }\n return (current < 0 ? 1 : -1)\n } else if (isNaN(current) && !isNaN(next)) {\n if (next === 0) {\n return 0\n }\n return (next > 0 ? 1 : -1)\n }\n\n if (next === current) {\n return 0\n }\n\n return (next > current ? 1 : -1)\n }\n\n if (argc === 0) {\n throw new Error('At least one value should be passed to min()')\n } else if (argc === 1) {\n if (typeof argv[0] === 'object') {\n ar = _obj2Array(argv[0])\n } else {\n throw new Error('Wrong parameter count for min()')\n }\n\n if (ar.length === 0) {\n throw new Error('Array must contain at least one element for min()')\n }\n } else {\n ar = argv\n }\n\n retVal = ar[0]\n\n for (i = 1, n = ar.length; i < n; ++i) {\n if (_compare(retVal, ar[i]) === -1) {\n retVal = ar[i]\n }\n }\n\n return retVal\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/mt_getrandmax.js b/node_modules/locutus/php/math/mt_getrandmax.js new file mode 100644 index 0000000..1f76ca7 --- /dev/null +++ b/node_modules/locutus/php/math/mt_getrandmax.js @@ -0,0 +1,12 @@ +"use strict"; + +module.exports = function mt_getrandmax() { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/mt_getrandmax/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: mt_getrandmax() + // returns 1: 2147483647 + + return 2147483647; +}; +//# sourceMappingURL=mt_getrandmax.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/mt_getrandmax.js.map b/node_modules/locutus/php/math/mt_getrandmax.js.map new file mode 100644 index 0000000..3efa229 --- /dev/null +++ b/node_modules/locutus/php/math/mt_getrandmax.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/mt_getrandmax.js"],"names":["module","exports","mt_getrandmax"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,aAAT,GAA0B;AAAE;AAC3C;AACA;AACA;AACA;;AAEA,SAAO,UAAP;AACD,CAPD","file":"mt_getrandmax.js","sourcesContent":["module.exports = function mt_getrandmax () { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/mt_getrandmax/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: mt_getrandmax()\n // returns 1: 2147483647\n\n return 2147483647\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/mt_rand.js b/node_modules/locutus/php/math/mt_rand.js new file mode 100644 index 0000000..42f3be5 --- /dev/null +++ b/node_modules/locutus/php/math/mt_rand.js @@ -0,0 +1,24 @@ +'use strict'; + +module.exports = function mt_rand(min, max) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/mt_rand/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: Brett Zamir (http://brett-zamir.me) + // input by: Kongo + // example 1: mt_rand(1, 1) + // returns 1: 1 + + var argc = arguments.length; + if (argc === 0) { + min = 0; + max = 2147483647; + } else if (argc === 1) { + throw new Error('Warning: mt_rand() expects exactly 2 parameters, 1 given'); + } else { + min = parseInt(min, 10); + max = parseInt(max, 10); + } + return Math.floor(Math.random() * (max - min + 1)) + min; +}; +//# sourceMappingURL=mt_rand.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/mt_rand.js.map b/node_modules/locutus/php/math/mt_rand.js.map new file mode 100644 index 0000000..fbd5a4d --- /dev/null +++ b/node_modules/locutus/php/math/mt_rand.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/mt_rand.js"],"names":["module","exports","mt_rand","min","max","argc","arguments","length","Error","parseInt","Math","floor","random"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,GAAlB,EAAuBC,GAAvB,EAA4B;AAAE;AAC7C;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,OAAOC,UAAUC,MAArB;AACA,MAAIF,SAAS,CAAb,EAAgB;AACdF,UAAM,CAAN;AACAC,UAAM,UAAN;AACD,GAHD,MAGO,IAAIC,SAAS,CAAb,EAAgB;AACrB,UAAM,IAAIG,KAAJ,CAAU,0DAAV,CAAN;AACD,GAFM,MAEA;AACLL,UAAMM,SAASN,GAAT,EAAc,EAAd,CAAN;AACAC,UAAMK,SAASL,GAAT,EAAc,EAAd,CAAN;AACD;AACD,SAAOM,KAAKC,KAAL,CAAWD,KAAKE,MAAL,MAAiBR,MAAMD,GAAN,GAAY,CAA7B,CAAX,IAA8CA,GAArD;AACD,CAnBD","file":"mt_rand.js","sourcesContent":["module.exports = function mt_rand (min, max) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/mt_rand/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // input by: Kongo\n // example 1: mt_rand(1, 1)\n // returns 1: 1\n\n var argc = arguments.length\n if (argc === 0) {\n min = 0\n max = 2147483647\n } else if (argc === 1) {\n throw new Error('Warning: mt_rand() expects exactly 2 parameters, 1 given')\n } else {\n min = parseInt(min, 10)\n max = parseInt(max, 10)\n }\n return Math.floor(Math.random() * (max - min + 1)) + min\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/octdec.js b/node_modules/locutus/php/math/octdec.js new file mode 100644 index 0000000..e94fba6 --- /dev/null +++ b/node_modules/locutus/php/math/octdec.js @@ -0,0 +1,12 @@ +'use strict'; + +module.exports = function octdec(octString) { + // discuss at: http://locutus.io/php/octdec/ + // original by: Philippe Baumann + // example 1: octdec('77') + // returns 1: 63 + + octString = (octString + '').replace(/[^0-7]/gi, ''); + return parseInt(octString, 8); +}; +//# sourceMappingURL=octdec.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/octdec.js.map b/node_modules/locutus/php/math/octdec.js.map new file mode 100644 index 0000000..7b10ee2 --- /dev/null +++ b/node_modules/locutus/php/math/octdec.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/octdec.js"],"names":["module","exports","octdec","octString","replace","parseInt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,SAAjB,EAA4B;AAC3C;AACA;AACA;AACA;;AAEAA,cAAY,CAACA,YAAY,EAAb,EAAiBC,OAAjB,CAAyB,UAAzB,EAAqC,EAArC,CAAZ;AACA,SAAOC,SAASF,SAAT,EAAoB,CAApB,CAAP;AACD,CARD","file":"octdec.js","sourcesContent":["module.exports = function octdec (octString) {\n // discuss at: http://locutus.io/php/octdec/\n // original by: Philippe Baumann\n // example 1: octdec('77')\n // returns 1: 63\n\n octString = (octString + '').replace(/[^0-7]/gi, '')\n return parseInt(octString, 8)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/pi.js b/node_modules/locutus/php/math/pi.js new file mode 100644 index 0000000..ac13ffb --- /dev/null +++ b/node_modules/locutus/php/math/pi.js @@ -0,0 +1,12 @@ +"use strict"; + +module.exports = function pi() { + // discuss at: http://locutus.io/php/pi/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: dude + // example 1: pi(8723321.4) + // returns 1: 3.141592653589793 + + return 3.141592653589793; // Math.PI +}; +//# sourceMappingURL=pi.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/pi.js.map b/node_modules/locutus/php/math/pi.js.map new file mode 100644 index 0000000..48d8d6f --- /dev/null +++ b/node_modules/locutus/php/math/pi.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/pi.js"],"names":["module","exports","pi"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,EAAT,GAAe;AAC9B;AACA;AACA;AACA;AACA;;AAEA,SAAO,iBAAP,CAP8B,CAOL;AAC1B,CARD","file":"pi.js","sourcesContent":["module.exports = function pi () {\n // discuss at: http://locutus.io/php/pi/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // improved by: dude\n // example 1: pi(8723321.4)\n // returns 1: 3.141592653589793\n\n return 3.141592653589793 // Math.PI\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/pow.js b/node_modules/locutus/php/math/pow.js new file mode 100644 index 0000000..c9ef62d --- /dev/null +++ b/node_modules/locutus/php/math/pow.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function pow(base, exp) { + // discuss at: http://locutus.io/php/pow/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: pow(8723321.4, 7) + // returns 1: 3.8439091680778995e+48 + + return Math.pow(base, exp); +}; +//# sourceMappingURL=pow.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/pow.js.map b/node_modules/locutus/php/math/pow.js.map new file mode 100644 index 0000000..2e839fc --- /dev/null +++ b/node_modules/locutus/php/math/pow.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/pow.js"],"names":["module","exports","pow","base","exp","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,GAAT,CAAcC,IAAd,EAAoBC,GAApB,EAAyB;AACxC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKH,GAAL,CAASC,IAAT,EAAeC,GAAf,CAAP;AACD,CAPD","file":"pow.js","sourcesContent":["module.exports = function pow (base, exp) {\n // discuss at: http://locutus.io/php/pow/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: pow(8723321.4, 7)\n // returns 1: 3.8439091680778995e+48\n\n return Math.pow(base, exp)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/rad2deg.js b/node_modules/locutus/php/math/rad2deg.js new file mode 100644 index 0000000..1cdd933 --- /dev/null +++ b/node_modules/locutus/php/math/rad2deg.js @@ -0,0 +1,12 @@ +"use strict"; + +module.exports = function rad2deg(angle) { + // discuss at: http://locutus.io/php/rad2deg/ + // original by: Enrique Gonzalez + // improved by: Brett Zamir (http://brett-zamir.me) + // example 1: rad2deg(3.141592653589793) + // returns 1: 180 + + return angle * 57.29577951308232; // angle / Math.PI * 180 +}; +//# sourceMappingURL=rad2deg.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/rad2deg.js.map b/node_modules/locutus/php/math/rad2deg.js.map new file mode 100644 index 0000000..36b9989 --- /dev/null +++ b/node_modules/locutus/php/math/rad2deg.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/rad2deg.js"],"names":["module","exports","rad2deg","angle"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,KAAlB,EAAyB;AACxC;AACA;AACA;AACA;AACA;;AAEA,SAAOA,QAAQ,iBAAf,CAPwC,CAOP;AAClC,CARD","file":"rad2deg.js","sourcesContent":["module.exports = function rad2deg (angle) {\n // discuss at: http://locutus.io/php/rad2deg/\n // original by: Enrique Gonzalez\n // improved by: Brett Zamir (http://brett-zamir.me)\n // example 1: rad2deg(3.141592653589793)\n // returns 1: 180\n\n return angle * 57.29577951308232 // angle / Math.PI * 180\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/rand.js b/node_modules/locutus/php/math/rand.js new file mode 100644 index 0000000..086900d --- /dev/null +++ b/node_modules/locutus/php/math/rand.js @@ -0,0 +1,22 @@ +'use strict'; + +module.exports = function rand(min, max) { + // discuss at: http://locutus.io/php/rand/ + // original by: Leslie Hoare + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // note 1: See the commented out code below for a version which + // note 1: will work with our experimental (though probably unnecessary) + // note 1: srand() function) + // example 1: rand(1, 1) + // returns 1: 1 + + var argc = arguments.length; + if (argc === 0) { + min = 0; + max = 2147483647; + } else if (argc === 1) { + throw new Error('Warning: rand() expects exactly 2 parameters, 1 given'); + } + return Math.floor(Math.random() * (max - min + 1)) + min; +}; +//# sourceMappingURL=rand.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/rand.js.map b/node_modules/locutus/php/math/rand.js.map new file mode 100644 index 0000000..fcf11c0 --- /dev/null +++ b/node_modules/locutus/php/math/rand.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/rand.js"],"names":["module","exports","rand","min","max","argc","arguments","length","Error","Math","floor","random"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoBC,GAApB,EAAyB;AACxC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,OAAOC,UAAUC,MAArB;AACA,MAAIF,SAAS,CAAb,EAAgB;AACdF,UAAM,CAAN;AACAC,UAAM,UAAN;AACD,GAHD,MAGO,IAAIC,SAAS,CAAb,EAAgB;AACrB,UAAM,IAAIG,KAAJ,CAAU,uDAAV,CAAN;AACD;AACD,SAAOC,KAAKC,KAAL,CAAWD,KAAKE,MAAL,MAAiBP,MAAMD,GAAN,GAAY,CAA7B,CAAX,IAA8CA,GAArD;AACD,CAlBD","file":"rand.js","sourcesContent":["module.exports = function rand (min, max) {\n // discuss at: http://locutus.io/php/rand/\n // original by: Leslie Hoare\n // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)\n // note 1: See the commented out code below for a version which\n // note 1: will work with our experimental (though probably unnecessary)\n // note 1: srand() function)\n // example 1: rand(1, 1)\n // returns 1: 1\n\n var argc = arguments.length\n if (argc === 0) {\n min = 0\n max = 2147483647\n } else if (argc === 1) {\n throw new Error('Warning: rand() expects exactly 2 parameters, 1 given')\n }\n return Math.floor(Math.random() * (max - min + 1)) + min\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/round.js b/node_modules/locutus/php/math/round.js new file mode 100644 index 0000000..372bc5b --- /dev/null +++ b/node_modules/locutus/php/math/round.js @@ -0,0 +1,62 @@ +'use strict'; + +module.exports = function round(value, precision, mode) { + // discuss at: http://locutus.io/php/round/ + // original by: Philip Peterson + // revised by: Onno Marsman (https://twitter.com/onnomarsman) + // revised by: T.Wild + // revised by: Rafał Kukawski (http://blog.kukawski.pl) + // input by: Greenseed + // input by: meo + // input by: William + // input by: Josep Sanz (http://www.ws3.es/) + // bugfixed by: Brett Zamir (http://brett-zamir.me) + // note 1: Great work. Ideas for improvement: + // note 1: - code more compliant with developer guidelines + // note 1: - for implementing PHP constant arguments look at + // note 1: the pathinfo() function, it offers the greatest + // note 1: flexibility & compatibility possible + // example 1: round(1241757, -3) + // returns 1: 1242000 + // example 2: round(3.6) + // returns 2: 4 + // example 3: round(2.835, 2) + // returns 3: 2.84 + // example 4: round(1.1749999999999, 2) + // returns 4: 1.17 + // example 5: round(58551.799999999996, 2) + // returns 5: 58551.8 + + var m, f, isHalf, sgn; // helper variables + // making sure precision is integer + precision |= 0; + m = Math.pow(10, precision); + value *= m; + // sign of the number + sgn = value > 0 | -(value < 0); + isHalf = value % 1 === 0.5 * sgn; + f = Math.floor(value); + + if (isHalf) { + switch (mode) { + case 'PHP_ROUND_HALF_DOWN': + // rounds .5 toward zero + value = f + (sgn < 0); + break; + case 'PHP_ROUND_HALF_EVEN': + // rouds .5 towards the next even integer + value = f + f % 2 * sgn; + break; + case 'PHP_ROUND_HALF_ODD': + // rounds .5 towards the next odd integer + value = f + !(f % 2); + break; + default: + // rounds .5 away from zero + value = f + (sgn > 0); + } + } + + return (isHalf ? value : Math.round(value)) / m; +}; +//# sourceMappingURL=round.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/round.js.map b/node_modules/locutus/php/math/round.js.map new file mode 100644 index 0000000..d5abf17 --- /dev/null +++ b/node_modules/locutus/php/math/round.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/round.js"],"names":["module","exports","round","value","precision","mode","m","f","isHalf","sgn","Math","pow","floor"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,KAAhB,EAAuBC,SAAvB,EAAkCC,IAAlC,EAAwC;AACvD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,CAAJ,EAAOC,CAAP,EAAUC,MAAV,EAAkBC,GAAlB,CA3BuD,CA2BjC;AACtB;AACAL,eAAa,CAAb;AACAE,MAAII,KAAKC,GAAL,CAAS,EAAT,EAAaP,SAAb,CAAJ;AACAD,WAASG,CAAT;AACA;AACAG,QAAON,QAAQ,CAAT,GAAc,EAAEA,QAAQ,CAAV,CAApB;AACAK,WAASL,QAAQ,CAAR,KAAc,MAAMM,GAA7B;AACAF,MAAIG,KAAKE,KAAL,CAAWT,KAAX,CAAJ;;AAEA,MAAIK,MAAJ,EAAY;AACV,YAAQH,IAAR;AACE,WAAK,qBAAL;AACA;AACEF,gBAAQI,KAAKE,MAAM,CAAX,CAAR;AACA;AACF,WAAK,qBAAL;AACA;AACEN,gBAAQI,IAAKA,IAAI,CAAJ,GAAQE,GAArB;AACA;AACF,WAAK,oBAAL;AACA;AACEN,gBAAQI,IAAI,EAAEA,IAAI,CAAN,CAAZ;AACA;AACF;AACA;AACEJ,gBAAQI,KAAKE,MAAM,CAAX,CAAR;AAfJ;AAiBD;;AAED,SAAO,CAACD,SAASL,KAAT,GAAiBO,KAAKR,KAAL,CAAWC,KAAX,CAAlB,IAAuCG,CAA9C;AACD,CA1DD","file":"round.js","sourcesContent":["module.exports = function round (value, precision, mode) {\n // discuss at: http://locutus.io/php/round/\n // original by: Philip Peterson\n // revised by: Onno Marsman (https://twitter.com/onnomarsman)\n // revised by: T.Wild\n // revised by: Rafał Kukawski (http://blog.kukawski.pl)\n // input by: Greenseed\n // input by: meo\n // input by: William\n // input by: Josep Sanz (http://www.ws3.es/)\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // note 1: Great work. Ideas for improvement:\n // note 1: - code more compliant with developer guidelines\n // note 1: - for implementing PHP constant arguments look at\n // note 1: the pathinfo() function, it offers the greatest\n // note 1: flexibility & compatibility possible\n // example 1: round(1241757, -3)\n // returns 1: 1242000\n // example 2: round(3.6)\n // returns 2: 4\n // example 3: round(2.835, 2)\n // returns 3: 2.84\n // example 4: round(1.1749999999999, 2)\n // returns 4: 1.17\n // example 5: round(58551.799999999996, 2)\n // returns 5: 58551.8\n\n var m, f, isHalf, sgn // helper variables\n // making sure precision is integer\n precision |= 0\n m = Math.pow(10, precision)\n value *= m\n // sign of the number\n sgn = (value > 0) | -(value < 0)\n isHalf = value % 1 === 0.5 * sgn\n f = Math.floor(value)\n\n if (isHalf) {\n switch (mode) {\n case 'PHP_ROUND_HALF_DOWN':\n // rounds .5 toward zero\n value = f + (sgn < 0)\n break\n case 'PHP_ROUND_HALF_EVEN':\n // rouds .5 towards the next even integer\n value = f + (f % 2 * sgn)\n break\n case 'PHP_ROUND_HALF_ODD':\n // rounds .5 towards the next odd integer\n value = f + !(f % 2)\n break\n default:\n // rounds .5 away from zero\n value = f + (sgn > 0)\n }\n }\n\n return (isHalf ? value : Math.round(value)) / m\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/sin.js b/node_modules/locutus/php/math/sin.js new file mode 100644 index 0000000..1058e80 --- /dev/null +++ b/node_modules/locutus/php/math/sin.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function sin(arg) { + // discuss at: http://locutus.io/php/sin/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: Math.ceil(sin(8723321.4) * 10000000) + // returns 1: -9834330 + + return Math.sin(arg); +}; +//# sourceMappingURL=sin.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/sin.js.map b/node_modules/locutus/php/math/sin.js.map new file mode 100644 index 0000000..75f9751 --- /dev/null +++ b/node_modules/locutus/php/math/sin.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/sin.js"],"names":["module","exports","sin","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,GAAT,CAAcC,GAAd,EAAmB;AAClC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,GAAL,CAASC,GAAT,CAAP;AACD,CAPD","file":"sin.js","sourcesContent":["module.exports = function sin (arg) {\n // discuss at: http://locutus.io/php/sin/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: Math.ceil(sin(8723321.4) * 10000000)\n // returns 1: -9834330\n\n return Math.sin(arg)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/sinh.js b/node_modules/locutus/php/math/sinh.js new file mode 100644 index 0000000..12e5275 --- /dev/null +++ b/node_modules/locutus/php/math/sinh.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function sinh(arg) { + // discuss at: http://locutus.io/php/sinh/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: sinh(-0.9834330348825909) + // returns 1: -1.1497971402636502 + + return (Math.exp(arg) - Math.exp(-arg)) / 2; +}; +//# sourceMappingURL=sinh.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/sinh.js.map b/node_modules/locutus/php/math/sinh.js.map new file mode 100644 index 0000000..8005233 --- /dev/null +++ b/node_modules/locutus/php/math/sinh.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/sinh.js"],"names":["module","exports","sinh","arg","Math","exp"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoB;AACnC;AACA;AACA;AACA;;AAEA,SAAO,CAACC,KAAKC,GAAL,CAASF,GAAT,IAAgBC,KAAKC,GAAL,CAAS,CAACF,GAAV,CAAjB,IAAmC,CAA1C;AACD,CAPD","file":"sinh.js","sourcesContent":["module.exports = function sinh (arg) {\n // discuss at: http://locutus.io/php/sinh/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: sinh(-0.9834330348825909)\n // returns 1: -1.1497971402636502\n\n return (Math.exp(arg) - Math.exp(-arg)) / 2\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/sqrt.js b/node_modules/locutus/php/math/sqrt.js new file mode 100644 index 0000000..06cb9d4 --- /dev/null +++ b/node_modules/locutus/php/math/sqrt.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function sqrt(arg) { + // discuss at: http://locutus.io/php/sqrt/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: sqrt(8723321.4) + // returns 1: 2953.5269424875746 + + return Math.sqrt(arg); +}; +//# sourceMappingURL=sqrt.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/sqrt.js.map b/node_modules/locutus/php/math/sqrt.js.map new file mode 100644 index 0000000..1e3f9f5 --- /dev/null +++ b/node_modules/locutus/php/math/sqrt.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/sqrt.js"],"names":["module","exports","sqrt","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoB;AACnC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,IAAL,CAAUC,GAAV,CAAP;AACD,CAPD","file":"sqrt.js","sourcesContent":["module.exports = function sqrt (arg) {\n // discuss at: http://locutus.io/php/sqrt/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: sqrt(8723321.4)\n // returns 1: 2953.5269424875746\n\n return Math.sqrt(arg)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/tan.js b/node_modules/locutus/php/math/tan.js new file mode 100644 index 0000000..c031e7c --- /dev/null +++ b/node_modules/locutus/php/math/tan.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = function tan(arg) { + // discuss at: http://locutus.io/php/tan/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: Math.ceil(tan(8723321.4) * 10000000) + // returns 1: 54251849 + + return Math.tan(arg); +}; +//# sourceMappingURL=tan.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/tan.js.map b/node_modules/locutus/php/math/tan.js.map new file mode 100644 index 0000000..c694ae5 --- /dev/null +++ b/node_modules/locutus/php/math/tan.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/tan.js"],"names":["module","exports","tan","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,GAAT,CAAcC,GAAd,EAAmB;AAClC;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,GAAL,CAASC,GAAT,CAAP;AACD,CAPD","file":"tan.js","sourcesContent":["module.exports = function tan (arg) {\n // discuss at: http://locutus.io/php/tan/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: Math.ceil(tan(8723321.4) * 10000000)\n // returns 1: 54251849\n\n return Math.tan(arg)\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/math/tanh.js b/node_modules/locutus/php/math/tanh.js new file mode 100644 index 0000000..b447719 --- /dev/null +++ b/node_modules/locutus/php/math/tanh.js @@ -0,0 +1,12 @@ +"use strict"; + +module.exports = function tanh(arg) { + // discuss at: http://locutus.io/php/tanh/ + // original by: Onno Marsman (https://twitter.com/onnomarsman) + // imprived by: Robert Eisele (http://www.xarg.org/) + // example 1: tanh(5.4251848798444815) + // returns 1: 0.9999612058841574 + + return 1 - 2 / (Math.exp(2 * arg) + 1); +}; +//# sourceMappingURL=tanh.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/math/tanh.js.map b/node_modules/locutus/php/math/tanh.js.map new file mode 100644 index 0000000..2b8a060 --- /dev/null +++ b/node_modules/locutus/php/math/tanh.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/math/tanh.js"],"names":["module","exports","tanh","arg","Math","exp"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoB;AACnC;AACA;AACA;AACA;AACA;;AAEA,SAAO,IAAI,KAAKC,KAAKC,GAAL,CAAS,IAAIF,GAAb,IAAoB,CAAzB,CAAX;AACD,CARD","file":"tanh.js","sourcesContent":["module.exports = function tanh (arg) {\n // discuss at: http://locutus.io/php/tanh/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // imprived by: Robert Eisele (http://www.xarg.org/)\n // example 1: tanh(5.4251848798444815)\n // returns 1: 0.9999612058841574\n\n return 1 - 2 / (Math.exp(2 * arg) + 1)\n}\n"]}
\ No newline at end of file |