diff options
Diffstat (limited to 'node_modules/locutus/c/math')
-rw-r--r-- | node_modules/locutus/c/math/abs.js | 20 | ||||
-rw-r--r-- | node_modules/locutus/c/math/abs.js.map | 1 | ||||
-rw-r--r-- | node_modules/locutus/c/math/frexp.js | 75 | ||||
-rw-r--r-- | node_modules/locutus/c/math/frexp.js.map | 1 | ||||
-rw-r--r-- | node_modules/locutus/c/math/index.js | 5 | ||||
-rw-r--r-- | node_modules/locutus/c/math/index.js.map | 1 |
6 files changed, 0 insertions, 103 deletions
diff --git a/node_modules/locutus/c/math/abs.js b/node_modules/locutus/c/math/abs.js deleted file mode 100644 index c329bf3..0000000 --- a/node_modules/locutus/c/math/abs.js +++ /dev/null @@ -1,20 +0,0 @@ -"use strict"; - -module.exports = function abs(mixedNumber) { - // discuss at: http://locutus.io/c/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/c/math/abs.js.map b/node_modules/locutus/c/math/abs.js.map deleted file mode 100644 index 27a0950..0000000 --- a/node_modules/locutus/c/math/abs.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/c/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/c/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/c/math/frexp.js b/node_modules/locutus/c/math/frexp.js deleted file mode 100644 index 876e2f5..0000000 --- a/node_modules/locutus/c/math/frexp.js +++ /dev/null @@ -1,75 +0,0 @@ -"use strict"; - -module.exports = function frexp(arg) { - // discuss at: http://locutus.io/c/frexp/ - // original by: Oskar Larsson Högfeldt (http://oskar-lh.name/) - // note 1: Instead of - // note 1: double frexp( double arg, int* exp ); - // note 1: this is built as - // note 1: [double, int] frexp( double arg ); - // note 1: due to the lack of pointers in JavaScript. - // note 1: See code comments for further information. - // example 1: frexp(1) - // returns 1: [0.5, 1] - // example 2: frexp(1.5) - // returns 2: [0.75, 1] - // example 3: frexp(3 * Math.pow(2, 500)) - // returns 3: [0.75, 502] - // example 4: frexp(-4) - // returns 4: [-0.5, 3] - // example 5: frexp(Number.MAX_VALUE) - // returns 5: [0.9999999999999999, 1024] - // example 6: frexp(Number.MIN_VALUE) - // returns 6: [0.5, -1073] - // example 7: frexp(-Infinity) - // returns 7: [-Infinity, 0] - // example 8: frexp(-0) - // returns 8: [-0, 0] - // example 9: frexp(NaN) - // returns 9: [NaN, 0] - - // Potential issue with this implementation: - // the precisions of Math.pow and the ** operator are undefined in the ECMAScript standard, - // however, sane implementations should give the same results for Math.pow(2, <integer>) operations - - // Like frexp of C and std::frexp of C++, - // but returns an array instead of using a pointer argument for passing the exponent result. - // Object.is(n, frexp(n)[0] * 2 ** frexp(n)[1]) for all number values of n except when Math.isFinite(n) && Math.abs(n) > 2**1023 - // Object.is(n, (2 * frexp(n)[0]) * 2 ** (frexp(n)[1] - 1)) for all number values of n - // Object.is(n, frexp(n)[0]) for these values of n: 0, -0, NaN, Infinity, -Infinity - // Math.abs(frexp(n)[0]) is >= 0.5 and < 1.0 for any other number-type value of n - // See http://en.cppreference.com/w/c/numeric/math/frexp for a more detailed description - - arg = Number(arg); - - var result = [arg, 0]; - - if (arg !== 0 && Number.isFinite(arg)) { - var absArg = Math.abs(arg); - // Math.log2 was introduced in ES2015, use it when available - var log2 = Math.log2 || function log2(n) { - return Math.log(n) * Math.LOG2E; - }; - var exp = Math.max(-1023, Math.floor(log2(absArg)) + 1); - var x = absArg * Math.pow(2, -exp); - - // These while loops compensate for rounding errors that sometimes occur because of ECMAScript's Math.log2's undefined precision - // and also works around the issue of Math.pow(2, -exp) === Infinity when exp <= -1024 - while (x < 0.5) { - x *= 2; - exp--; - } - while (x >= 1) { - x *= 0.5; - exp++; - } - - if (arg < 0) { - x = -x; - } - result[0] = x; - result[1] = exp; - } - return result; -}; -//# sourceMappingURL=frexp.js.map
\ No newline at end of file diff --git a/node_modules/locutus/c/math/frexp.js.map b/node_modules/locutus/c/math/frexp.js.map deleted file mode 100644 index 461d0ff..0000000 --- a/node_modules/locutus/c/math/frexp.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/c/math/frexp.js"],"names":["module","exports","frexp","arg","Number","result","isFinite","absArg","Math","abs","log2","n","log","LOG2E","exp","max","floor","x","pow"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,GAAhB,EAAqB;AACpC;AACA;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;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEAA,QAAMC,OAAOD,GAAP,CAAN;;AAEA,MAAME,SAAS,CAACF,GAAD,EAAM,CAAN,CAAf;;AAEA,MAAIA,QAAQ,CAAR,IAAaC,OAAOE,QAAP,CAAgBH,GAAhB,CAAjB,EAAuC;AACrC,QAAMI,SAASC,KAAKC,GAAL,CAASN,GAAT,CAAf;AACA;AACA,QAAMO,OAAOF,KAAKE,IAAL,IAAa,SAASA,IAAT,CAAeC,CAAf,EAAkB;AAAE,aAAOH,KAAKI,GAAL,CAASD,CAAT,IAAcH,KAAKK,KAA1B;AAAiC,KAA/E;AACA,QAAIC,MAAMN,KAAKO,GAAL,CAAS,CAAC,IAAV,EAAgBP,KAAKQ,KAAL,CAAWN,KAAKH,MAAL,CAAX,IAA2B,CAA3C,CAAV;AACA,QAAIU,IAAIV,SAASC,KAAKU,GAAL,CAAS,CAAT,EAAY,CAACJ,GAAb,CAAjB;;AAEA;AACA;AACA,WAAOG,IAAI,GAAX,EAAgB;AACdA,WAAK,CAAL;AACAH;AACD;AACD,WAAOG,KAAK,CAAZ,EAAe;AACbA,WAAK,GAAL;AACAH;AACD;;AAED,QAAIX,MAAM,CAAV,EAAa;AACXc,UAAI,CAACA,CAAL;AACD;AACDZ,WAAO,CAAP,IAAYY,CAAZ;AACAZ,WAAO,CAAP,IAAYS,GAAZ;AACD;AACD,SAAOT,MAAP;AACD,CArED","file":"frexp.js","sourcesContent":["module.exports = function frexp (arg) {\n // discuss at: http://locutus.io/c/frexp/\n // original by: Oskar Larsson Högfeldt (http://oskar-lh.name/)\n // note 1: Instead of\n // note 1: double frexp( double arg, int* exp );\n // note 1: this is built as\n // note 1: [double, int] frexp( double arg );\n // note 1: due to the lack of pointers in JavaScript.\n // note 1: See code comments for further information.\n // example 1: frexp(1)\n // returns 1: [0.5, 1]\n // example 2: frexp(1.5)\n // returns 2: [0.75, 1]\n // example 3: frexp(3 * Math.pow(2, 500))\n // returns 3: [0.75, 502]\n // example 4: frexp(-4)\n // returns 4: [-0.5, 3]\n // example 5: frexp(Number.MAX_VALUE)\n // returns 5: [0.9999999999999999, 1024]\n // example 6: frexp(Number.MIN_VALUE)\n // returns 6: [0.5, -1073]\n // example 7: frexp(-Infinity)\n // returns 7: [-Infinity, 0]\n // example 8: frexp(-0)\n // returns 8: [-0, 0]\n // example 9: frexp(NaN)\n // returns 9: [NaN, 0]\n\n // Potential issue with this implementation:\n // the precisions of Math.pow and the ** operator are undefined in the ECMAScript standard,\n // however, sane implementations should give the same results for Math.pow(2, <integer>) operations\n\n // Like frexp of C and std::frexp of C++,\n // but returns an array instead of using a pointer argument for passing the exponent result.\n // Object.is(n, frexp(n)[0] * 2 ** frexp(n)[1]) for all number values of n except when Math.isFinite(n) && Math.abs(n) > 2**1023\n // Object.is(n, (2 * frexp(n)[0]) * 2 ** (frexp(n)[1] - 1)) for all number values of n\n // Object.is(n, frexp(n)[0]) for these values of n: 0, -0, NaN, Infinity, -Infinity\n // Math.abs(frexp(n)[0]) is >= 0.5 and < 1.0 for any other number-type value of n\n // See http://en.cppreference.com/w/c/numeric/math/frexp for a more detailed description\n\n arg = Number(arg)\n\n const result = [arg, 0]\n\n if (arg !== 0 && Number.isFinite(arg)) {\n const absArg = Math.abs(arg)\n // Math.log2 was introduced in ES2015, use it when available\n const log2 = Math.log2 || function log2 (n) { return Math.log(n) * Math.LOG2E }\n let exp = Math.max(-1023, Math.floor(log2(absArg)) + 1)\n let x = absArg * Math.pow(2, -exp)\n\n // These while loops compensate for rounding errors that sometimes occur because of ECMAScript's Math.log2's undefined precision\n // and also works around the issue of Math.pow(2, -exp) === Infinity when exp <= -1024\n while (x < 0.5) {\n x *= 2\n exp--\n }\n while (x >= 1) {\n x *= 0.5\n exp++\n }\n\n if (arg < 0) {\n x = -x\n }\n result[0] = x\n result[1] = exp\n }\n return result\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/c/math/index.js b/node_modules/locutus/c/math/index.js deleted file mode 100644 index 8c55887..0000000 --- a/node_modules/locutus/c/math/index.js +++ /dev/null @@ -1,5 +0,0 @@ -'use strict'; - -module.exports['abs'] = require('./abs'); -module.exports['frexp'] = require('./frexp'); -//# sourceMappingURL=index.js.map
\ No newline at end of file diff --git a/node_modules/locutus/c/math/index.js.map b/node_modules/locutus/c/math/index.js.map deleted file mode 100644 index fe8b3a1..0000000 --- a/node_modules/locutus/c/math/index.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/c/math/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,KAAf,IAAwBC,QAAQ,OAAR,CAAxB;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B","file":"index.js","sourcesContent":["module.exports['abs'] = require('./abs')\nmodule.exports['frexp'] = require('./frexp')\n"]}
\ No newline at end of file |