summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/bc
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/bc')
-rw-r--r--node_modules/locutus/php/bc/bcadd.js39
-rw-r--r--node_modules/locutus/php/bc/bcadd.js.map1
-rw-r--r--node_modules/locutus/php/bc/bccomp.js34
-rw-r--r--node_modules/locutus/php/bc/bccomp.js.map1
-rw-r--r--node_modules/locutus/php/bc/bcdiv.js44
-rw-r--r--node_modules/locutus/php/bc/bcdiv.js.map1
-rw-r--r--node_modules/locutus/php/bc/bcmul.js40
-rw-r--r--node_modules/locutus/php/bc/bcmul.js.map1
-rw-r--r--node_modules/locutus/php/bc/bcround.js56
-rw-r--r--node_modules/locutus/php/bc/bcround.js.map1
-rw-r--r--node_modules/locutus/php/bc/bcscale.js23
-rw-r--r--node_modules/locutus/php/bc/bcscale.js.map1
-rw-r--r--node_modules/locutus/php/bc/bcsub.js39
-rw-r--r--node_modules/locutus/php/bc/bcsub.js.map1
-rw-r--r--node_modules/locutus/php/bc/index.js10
-rw-r--r--node_modules/locutus/php/bc/index.js.map1
16 files changed, 293 insertions, 0 deletions
diff --git a/node_modules/locutus/php/bc/bcadd.js b/node_modules/locutus/php/bc/bcadd.js
new file mode 100644
index 0000000..8c6a017
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcadd.js
@@ -0,0 +1,39 @@
+'use strict';
+
+module.exports = function bcadd(leftOperand, rightOperand, scale) {
+ // discuss at: http://locutus.io/php/bcadd/
+ // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)
+ // example 1: bcadd('1', '2')
+ // returns 1: '3'
+ // example 2: bcadd('-1', '5', 4)
+ // returns 2: '4.0000'
+ // example 3: bcadd('1928372132132819737213', '8728932001983192837219398127471', 2)
+ // returns 3: '8728932003911564969352217864684.00'
+
+ var bc = require('../_helpers/_bc');
+ var libbcmath = bc();
+
+ var first, second, result;
+
+ if (typeof scale === 'undefined') {
+ scale = libbcmath.scale;
+ }
+ scale = scale < 0 ? 0 : scale;
+
+ // create objects
+ first = libbcmath.bc_init_num();
+ second = libbcmath.bc_init_num();
+ result = libbcmath.bc_init_num();
+
+ first = libbcmath.php_str2num(leftOperand.toString());
+ second = libbcmath.php_str2num(rightOperand.toString());
+
+ result = libbcmath.bc_add(first, second, scale);
+
+ if (result.n_scale > scale) {
+ result.n_scale = scale;
+ }
+
+ return result.toString();
+};
+//# sourceMappingURL=bcadd.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcadd.js.map b/node_modules/locutus/php/bc/bcadd.js.map
new file mode 100644
index 0000000..5e6b5ec
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcadd.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/bc/bcadd.js"],"names":["module","exports","bcadd","leftOperand","rightOperand","scale","bc","require","libbcmath","first","second","result","bc_init_num","php_str2num","toString","bc_add","n_scale"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,WAAhB,EAA6BC,YAA7B,EAA2CC,KAA3C,EAAkD;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,KAAKC,QAAQ,iBAAR,CAAT;AACA,MAAIC,YAAYF,IAAhB;;AAEA,MAAIG,KAAJ,EAAWC,MAAX,EAAmBC,MAAnB;;AAEA,MAAI,OAAON,KAAP,KAAiB,WAArB,EAAkC;AAChCA,YAAQG,UAAUH,KAAlB;AACD;AACDA,UAAUA,QAAQ,CAAT,GAAc,CAAd,GAAkBA,KAA3B;;AAEA;AACAI,UAAQD,UAAUI,WAAV,EAAR;AACAF,WAASF,UAAUI,WAAV,EAAT;AACAD,WAASH,UAAUI,WAAV,EAAT;;AAEAH,UAAQD,UAAUK,WAAV,CAAsBV,YAAYW,QAAZ,EAAtB,CAAR;AACAJ,WAASF,UAAUK,WAAV,CAAsBT,aAAaU,QAAb,EAAtB,CAAT;;AAEAH,WAASH,UAAUO,MAAV,CAAiBN,KAAjB,EAAwBC,MAAxB,EAAgCL,KAAhC,CAAT;;AAEA,MAAIM,OAAOK,OAAP,GAAiBX,KAArB,EAA4B;AAC1BM,WAAOK,OAAP,GAAiBX,KAAjB;AACD;;AAED,SAAOM,OAAOG,QAAP,EAAP;AACD,CAnCD","file":"bcadd.js","sourcesContent":["module.exports = function bcadd (leftOperand, rightOperand, scale) {\n // discuss at: http://locutus.io/php/bcadd/\n // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)\n // example 1: bcadd('1', '2')\n // returns 1: '3'\n // example 2: bcadd('-1', '5', 4)\n // returns 2: '4.0000'\n // example 3: bcadd('1928372132132819737213', '8728932001983192837219398127471', 2)\n // returns 3: '8728932003911564969352217864684.00'\n\n var bc = require('../_helpers/_bc')\n var libbcmath = bc()\n\n var first, second, result\n\n if (typeof scale === 'undefined') {\n scale = libbcmath.scale\n }\n scale = ((scale < 0) ? 0 : scale)\n\n // create objects\n first = libbcmath.bc_init_num()\n second = libbcmath.bc_init_num()\n result = libbcmath.bc_init_num()\n\n first = libbcmath.php_str2num(leftOperand.toString())\n second = libbcmath.php_str2num(rightOperand.toString())\n\n result = libbcmath.bc_add(first, second, scale)\n\n if (result.n_scale > scale) {\n result.n_scale = scale\n }\n\n return result.toString()\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bccomp.js b/node_modules/locutus/php/bc/bccomp.js
new file mode 100644
index 0000000..bf1d07b
--- /dev/null
+++ b/node_modules/locutus/php/bc/bccomp.js
@@ -0,0 +1,34 @@
+'use strict';
+
+module.exports = function bccomp(leftOperand, rightOperand, scale) {
+ // discuss at: http://locutus.io/php/bccomp/
+ // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)
+ // example 1: bccomp('-1', '5', 4)
+ // returns 1: -1
+ // example 2: bccomp('1928372132132819737213', '8728932001983192837219398127471')
+ // returns 2: -1
+ // example 3: bccomp('1.00000000000000000001', '1', 2)
+ // returns 3: 0
+ // example 4: bccomp('97321', '2321')
+ // returns 4: 1
+
+ var bc = require('../_helpers/_bc');
+ var libbcmath = bc();
+
+ // bc_num
+ var first, second;
+ if (typeof scale === 'undefined') {
+ scale = libbcmath.scale;
+ }
+ scale = scale < 0 ? 0 : scale;
+
+ first = libbcmath.bc_init_num();
+ second = libbcmath.bc_init_num();
+
+ // note bc_ not php_str2num
+ first = libbcmath.bc_str2num(leftOperand.toString(), scale);
+ // note bc_ not php_str2num
+ second = libbcmath.bc_str2num(rightOperand.toString(), scale);
+ return libbcmath.bc_compare(first, second, scale);
+};
+//# sourceMappingURL=bccomp.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bccomp.js.map b/node_modules/locutus/php/bc/bccomp.js.map
new file mode 100644
index 0000000..985c106
--- /dev/null
+++ b/node_modules/locutus/php/bc/bccomp.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/bc/bccomp.js"],"names":["module","exports","bccomp","leftOperand","rightOperand","scale","bc","require","libbcmath","first","second","bc_init_num","bc_str2num","toString","bc_compare"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,WAAjB,EAA8BC,YAA9B,EAA4CC,KAA5C,EAAmD;AAClE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,KAAKC,QAAQ,iBAAR,CAAT;AACA,MAAIC,YAAYF,IAAhB;;AAEA;AACA,MAAIG,KAAJ,EAAWC,MAAX;AACA,MAAI,OAAOL,KAAP,KAAiB,WAArB,EAAkC;AAChCA,YAAQG,UAAUH,KAAlB;AACD;AACDA,UAAUA,QAAQ,CAAT,GAAc,CAAd,GAAkBA,KAA3B;;AAEAI,UAAQD,UAAUG,WAAV,EAAR;AACAD,WAASF,UAAUG,WAAV,EAAT;;AAEA;AACAF,UAAQD,UAAUI,UAAV,CAAqBT,YAAYU,QAAZ,EAArB,EAA6CR,KAA7C,CAAR;AACA;AACAK,WAASF,UAAUI,UAAV,CAAqBR,aAAaS,QAAb,EAArB,EAA8CR,KAA9C,CAAT;AACA,SAAOG,UAAUM,UAAV,CAAqBL,KAArB,EAA4BC,MAA5B,EAAoCL,KAApC,CAAP;AACD,CA9BD","file":"bccomp.js","sourcesContent":["module.exports = function bccomp (leftOperand, rightOperand, scale) {\n // discuss at: http://locutus.io/php/bccomp/\n // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)\n // example 1: bccomp('-1', '5', 4)\n // returns 1: -1\n // example 2: bccomp('1928372132132819737213', '8728932001983192837219398127471')\n // returns 2: -1\n // example 3: bccomp('1.00000000000000000001', '1', 2)\n // returns 3: 0\n // example 4: bccomp('97321', '2321')\n // returns 4: 1\n\n var bc = require('../_helpers/_bc')\n var libbcmath = bc()\n\n // bc_num\n var first, second\n if (typeof scale === 'undefined') {\n scale = libbcmath.scale\n }\n scale = ((scale < 0) ? 0 : scale)\n\n first = libbcmath.bc_init_num()\n second = libbcmath.bc_init_num()\n\n // note bc_ not php_str2num\n first = libbcmath.bc_str2num(leftOperand.toString(), scale)\n // note bc_ not php_str2num\n second = libbcmath.bc_str2num(rightOperand.toString(), scale)\n return libbcmath.bc_compare(first, second, scale)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcdiv.js b/node_modules/locutus/php/bc/bcdiv.js
new file mode 100644
index 0000000..1cbcd79
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcdiv.js
@@ -0,0 +1,44 @@
+'use strict';
+
+module.exports = function bcdiv(leftOperand, rightOperand, scale) {
+ // discuss at: http://locutus.io/php/bcdiv/
+ // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)
+ // example 1: bcdiv('1', '2')
+ // returns 1: '0'
+ // example 2: bcdiv('1', '2', 2)
+ // returns 2: '0.50'
+ // example 3: bcdiv('-1', '5', 4)
+ // returns 3: '-0.2000'
+ // example 4: bcdiv('8728932001983192837219398127471', '1928372132132819737213', 2)
+ // returns 4: '4526580661.75'
+
+ var _bc = require('../_helpers/_bc');
+ var libbcmath = _bc();
+
+ var first, second, result;
+
+ if (typeof scale === 'undefined') {
+ scale = libbcmath.scale;
+ }
+ scale = scale < 0 ? 0 : scale;
+
+ // create objects
+ first = libbcmath.bc_init_num();
+ second = libbcmath.bc_init_num();
+ result = libbcmath.bc_init_num();
+
+ first = libbcmath.php_str2num(leftOperand.toString());
+ second = libbcmath.php_str2num(rightOperand.toString());
+
+ result = libbcmath.bc_divide(first, second, scale);
+ if (result === -1) {
+ // error
+ throw new Error(11, '(BC) Division by zero');
+ }
+ if (result.n_scale > scale) {
+ result.n_scale = scale;
+ }
+
+ return result.toString();
+};
+//# sourceMappingURL=bcdiv.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcdiv.js.map b/node_modules/locutus/php/bc/bcdiv.js.map
new file mode 100644
index 0000000..10f0db4
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcdiv.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/bc/bcdiv.js"],"names":["module","exports","bcdiv","leftOperand","rightOperand","scale","_bc","require","libbcmath","first","second","result","bc_init_num","php_str2num","toString","bc_divide","Error","n_scale"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,WAAhB,EAA6BC,YAA7B,EAA2CC,KAA3C,EAAkD;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,MAAMC,QAAQ,iBAAR,CAAV;AACA,MAAIC,YAAYF,KAAhB;;AAEA,MAAIG,KAAJ,EAAWC,MAAX,EAAmBC,MAAnB;;AAEA,MAAI,OAAON,KAAP,KAAiB,WAArB,EAAkC;AAChCA,YAAQG,UAAUH,KAAlB;AACD;AACDA,UAAUA,QAAQ,CAAT,GAAc,CAAd,GAAkBA,KAA3B;;AAEA;AACAI,UAAQD,UAAUI,WAAV,EAAR;AACAF,WAASF,UAAUI,WAAV,EAAT;AACAD,WAASH,UAAUI,WAAV,EAAT;;AAEAH,UAAQD,UAAUK,WAAV,CAAsBV,YAAYW,QAAZ,EAAtB,CAAR;AACAJ,WAASF,UAAUK,WAAV,CAAsBT,aAAaU,QAAb,EAAtB,CAAT;;AAEAH,WAASH,UAAUO,SAAV,CAAoBN,KAApB,EAA2BC,MAA3B,EAAmCL,KAAnC,CAAT;AACA,MAAIM,WAAW,CAAC,CAAhB,EAAmB;AACjB;AACA,UAAM,IAAIK,KAAJ,CAAU,EAAV,EAAc,uBAAd,CAAN;AACD;AACD,MAAIL,OAAOM,OAAP,GAAiBZ,KAArB,EAA4B;AAC1BM,WAAOM,OAAP,GAAiBZ,KAAjB;AACD;;AAED,SAAOM,OAAOG,QAAP,EAAP;AACD,CAxCD","file":"bcdiv.js","sourcesContent":["module.exports = function bcdiv (leftOperand, rightOperand, scale) {\n // discuss at: http://locutus.io/php/bcdiv/\n // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)\n // example 1: bcdiv('1', '2')\n // returns 1: '0'\n // example 2: bcdiv('1', '2', 2)\n // returns 2: '0.50'\n // example 3: bcdiv('-1', '5', 4)\n // returns 3: '-0.2000'\n // example 4: bcdiv('8728932001983192837219398127471', '1928372132132819737213', 2)\n // returns 4: '4526580661.75'\n\n var _bc = require('../_helpers/_bc')\n var libbcmath = _bc()\n\n var first, second, result\n\n if (typeof scale === 'undefined') {\n scale = libbcmath.scale\n }\n scale = ((scale < 0) ? 0 : scale)\n\n // create objects\n first = libbcmath.bc_init_num()\n second = libbcmath.bc_init_num()\n result = libbcmath.bc_init_num()\n\n first = libbcmath.php_str2num(leftOperand.toString())\n second = libbcmath.php_str2num(rightOperand.toString())\n\n result = libbcmath.bc_divide(first, second, scale)\n if (result === -1) {\n // error\n throw new Error(11, '(BC) Division by zero')\n }\n if (result.n_scale > scale) {\n result.n_scale = scale\n }\n\n return result.toString()\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcmul.js b/node_modules/locutus/php/bc/bcmul.js
new file mode 100644
index 0000000..27f27e8
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcmul.js
@@ -0,0 +1,40 @@
+'use strict';
+
+module.exports = function bcmul(leftOperand, rightOperand, scale) {
+ // discuss at: http://locutus.io/php/bcmul/
+ // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)
+ // example 1: bcmul('1', '2')
+ // returns 1: '2'
+ // example 2: bcmul('-3', '5')
+ // returns 2: '-15'
+ // example 3: bcmul('1234567890', '9876543210')
+ // returns 3: '12193263111263526900'
+ // example 4: bcmul('2.5', '1.5', 2)
+ // returns 4: '3.75'
+
+ var _bc = require('../_helpers/_bc');
+ var libbcmath = _bc();
+
+ var first, second, result;
+
+ if (typeof scale === 'undefined') {
+ scale = libbcmath.scale;
+ }
+ scale = scale < 0 ? 0 : scale;
+
+ // create objects
+ first = libbcmath.bc_init_num();
+ second = libbcmath.bc_init_num();
+ result = libbcmath.bc_init_num();
+
+ first = libbcmath.php_str2num(leftOperand.toString());
+ second = libbcmath.php_str2num(rightOperand.toString());
+
+ result = libbcmath.bc_multiply(first, second, scale);
+
+ if (result.n_scale > scale) {
+ result.n_scale = scale;
+ }
+ return result.toString();
+};
+//# sourceMappingURL=bcmul.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcmul.js.map b/node_modules/locutus/php/bc/bcmul.js.map
new file mode 100644
index 0000000..3a574f3
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcmul.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/bc/bcmul.js"],"names":["module","exports","bcmul","leftOperand","rightOperand","scale","_bc","require","libbcmath","first","second","result","bc_init_num","php_str2num","toString","bc_multiply","n_scale"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,WAAhB,EAA6BC,YAA7B,EAA2CC,KAA3C,EAAkD;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,MAAMC,QAAQ,iBAAR,CAAV;AACA,MAAIC,YAAYF,KAAhB;;AAEA,MAAIG,KAAJ,EAAWC,MAAX,EAAmBC,MAAnB;;AAEA,MAAI,OAAON,KAAP,KAAiB,WAArB,EAAkC;AAChCA,YAAQG,UAAUH,KAAlB;AACD;AACDA,UAAUA,QAAQ,CAAT,GAAc,CAAd,GAAkBA,KAA3B;;AAEA;AACAI,UAAQD,UAAUI,WAAV,EAAR;AACAF,WAASF,UAAUI,WAAV,EAAT;AACAD,WAASH,UAAUI,WAAV,EAAT;;AAEAH,UAAQD,UAAUK,WAAV,CAAsBV,YAAYW,QAAZ,EAAtB,CAAR;AACAJ,WAASF,UAAUK,WAAV,CAAsBT,aAAaU,QAAb,EAAtB,CAAT;;AAEAH,WAASH,UAAUO,WAAV,CAAsBN,KAAtB,EAA6BC,MAA7B,EAAqCL,KAArC,CAAT;;AAEA,MAAIM,OAAOK,OAAP,GAAiBX,KAArB,EAA4B;AAC1BM,WAAOK,OAAP,GAAiBX,KAAjB;AACD;AACD,SAAOM,OAAOG,QAAP,EAAP;AACD,CApCD","file":"bcmul.js","sourcesContent":["module.exports = function bcmul (leftOperand, rightOperand, scale) {\n // discuss at: http://locutus.io/php/bcmul/\n // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)\n // example 1: bcmul('1', '2')\n // returns 1: '2'\n // example 2: bcmul('-3', '5')\n // returns 2: '-15'\n // example 3: bcmul('1234567890', '9876543210')\n // returns 3: '12193263111263526900'\n // example 4: bcmul('2.5', '1.5', 2)\n // returns 4: '3.75'\n\n var _bc = require('../_helpers/_bc')\n var libbcmath = _bc()\n\n var first, second, result\n\n if (typeof scale === 'undefined') {\n scale = libbcmath.scale\n }\n scale = ((scale < 0) ? 0 : scale)\n\n // create objects\n first = libbcmath.bc_init_num()\n second = libbcmath.bc_init_num()\n result = libbcmath.bc_init_num()\n\n first = libbcmath.php_str2num(leftOperand.toString())\n second = libbcmath.php_str2num(rightOperand.toString())\n\n result = libbcmath.bc_multiply(first, second, scale)\n\n if (result.n_scale > scale) {\n result.n_scale = scale\n }\n return result.toString()\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcround.js b/node_modules/locutus/php/bc/bcround.js
new file mode 100644
index 0000000..bdcc7cf
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcround.js
@@ -0,0 +1,56 @@
+'use strict';
+
+module.exports = function bcround(val, precision) {
+ // discuss at: http://locutus.io/php/bcround/
+ // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)
+ // example 1: bcround(1, 2)
+ // returns 1: '1.00'
+
+ var _bc = require('../_helpers/_bc');
+ var libbcmath = _bc();
+
+ var temp, result, digit;
+ var rightOperand;
+
+ // create number
+ temp = libbcmath.bc_init_num();
+ temp = libbcmath.php_str2num(val.toString());
+
+ // check if any rounding needs
+ if (precision >= temp.n_scale) {
+ // nothing to round, just add the zeros.
+ while (temp.n_scale < precision) {
+ temp.n_value[temp.n_len + temp.n_scale] = 0;
+ temp.n_scale++;
+ }
+ return temp.toString();
+ }
+
+ // get the digit we are checking (1 after the precision)
+ // loop through digits after the precision marker
+ digit = temp.n_value[temp.n_len + precision];
+
+ rightOperand = libbcmath.bc_init_num();
+ rightOperand = libbcmath.bc_new_num(1, precision);
+
+ if (digit >= 5) {
+ // round away from zero by adding 1 (or -1) at the "precision"..
+ // ie 1.44999 @ 3dp = (1.44999 + 0.001).toString().substr(0,5)
+ rightOperand.n_value[rightOperand.n_len + rightOperand.n_scale - 1] = 1;
+ if (temp.n_sign === libbcmath.MINUS) {
+ // round down
+ rightOperand.n_sign = libbcmath.MINUS;
+ }
+ result = libbcmath.bc_add(temp, rightOperand, precision);
+ } else {
+ // leave-as-is.. just truncate it.
+ result = temp;
+ }
+
+ if (result.n_scale > precision) {
+ result.n_scale = precision;
+ }
+
+ return result.toString();
+};
+//# sourceMappingURL=bcround.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcround.js.map b/node_modules/locutus/php/bc/bcround.js.map
new file mode 100644
index 0000000..d358bcf
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcround.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/bc/bcround.js"],"names":["module","exports","bcround","val","precision","_bc","require","libbcmath","temp","result","digit","rightOperand","bc_init_num","php_str2num","toString","n_scale","n_value","n_len","bc_new_num","n_sign","MINUS","bc_add"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,GAAlB,EAAuBC,SAAvB,EAAkC;AACjD;AACA;AACA;AACA;;AAEA,MAAIC,MAAMC,QAAQ,iBAAR,CAAV;AACA,MAAIC,YAAYF,KAAhB;;AAEA,MAAIG,IAAJ,EAAUC,MAAV,EAAkBC,KAAlB;AACA,MAAIC,YAAJ;;AAEA;AACAH,SAAOD,UAAUK,WAAV,EAAP;AACAJ,SAAOD,UAAUM,WAAV,CAAsBV,IAAIW,QAAJ,EAAtB,CAAP;;AAEA;AACA,MAAIV,aAAaI,KAAKO,OAAtB,EAA+B;AAC7B;AACA,WAAOP,KAAKO,OAAL,GAAeX,SAAtB,EAAiC;AAC/BI,WAAKQ,OAAL,CAAaR,KAAKS,KAAL,GAAaT,KAAKO,OAA/B,IAA0C,CAA1C;AACAP,WAAKO,OAAL;AACD;AACD,WAAOP,KAAKM,QAAL,EAAP;AACD;;AAED;AACA;AACAJ,UAAQF,KAAKQ,OAAL,CAAaR,KAAKS,KAAL,GAAab,SAA1B,CAAR;;AAEAO,iBAAeJ,UAAUK,WAAV,EAAf;AACAD,iBAAeJ,UAAUW,UAAV,CAAqB,CAArB,EAAwBd,SAAxB,CAAf;;AAEA,MAAIM,SAAS,CAAb,EAAgB;AACd;AACA;AACAC,iBAAaK,OAAb,CAAqBL,aAAaM,KAAb,GAAqBN,aAAaI,OAAlC,GAA4C,CAAjE,IAAsE,CAAtE;AACA,QAAIP,KAAKW,MAAL,KAAgBZ,UAAUa,KAA9B,EAAqC;AACnC;AACAT,mBAAaQ,MAAb,GAAsBZ,UAAUa,KAAhC;AACD;AACDX,aAASF,UAAUc,MAAV,CAAiBb,IAAjB,EAAuBG,YAAvB,EAAqCP,SAArC,CAAT;AACD,GATD,MASO;AACL;AACAK,aAASD,IAAT;AACD;;AAED,MAAIC,OAAOM,OAAP,GAAiBX,SAArB,EAAgC;AAC9BK,WAAOM,OAAP,GAAiBX,SAAjB;AACD;;AAED,SAAOK,OAAOK,QAAP,EAAP;AACD,CApDD","file":"bcround.js","sourcesContent":["module.exports = function bcround (val, precision) {\n // discuss at: http://locutus.io/php/bcround/\n // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)\n // example 1: bcround(1, 2)\n // returns 1: '1.00'\n\n var _bc = require('../_helpers/_bc')\n var libbcmath = _bc()\n\n var temp, result, digit\n var rightOperand\n\n // create number\n temp = libbcmath.bc_init_num()\n temp = libbcmath.php_str2num(val.toString())\n\n // check if any rounding needs\n if (precision >= temp.n_scale) {\n // nothing to round, just add the zeros.\n while (temp.n_scale < precision) {\n temp.n_value[temp.n_len + temp.n_scale] = 0\n temp.n_scale++\n }\n return temp.toString()\n }\n\n // get the digit we are checking (1 after the precision)\n // loop through digits after the precision marker\n digit = temp.n_value[temp.n_len + precision]\n\n rightOperand = libbcmath.bc_init_num()\n rightOperand = libbcmath.bc_new_num(1, precision)\n\n if (digit >= 5) {\n // round away from zero by adding 1 (or -1) at the \"precision\"..\n // ie 1.44999 @ 3dp = (1.44999 + 0.001).toString().substr(0,5)\n rightOperand.n_value[rightOperand.n_len + rightOperand.n_scale - 1] = 1\n if (temp.n_sign === libbcmath.MINUS) {\n // round down\n rightOperand.n_sign = libbcmath.MINUS\n }\n result = libbcmath.bc_add(temp, rightOperand, precision)\n } else {\n // leave-as-is.. just truncate it.\n result = temp\n }\n\n if (result.n_scale > precision) {\n result.n_scale = precision\n }\n\n return result.toString()\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcscale.js b/node_modules/locutus/php/bc/bcscale.js
new file mode 100644
index 0000000..c2b3e55
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcscale.js
@@ -0,0 +1,23 @@
+'use strict';
+
+module.exports = function bcscale(scale) {
+ // discuss at: http://locutus.io/php/bcscale/
+ // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)
+ // example 1: bcscale(1)
+ // returns 1: true
+
+ var _bc = require('../_helpers/_bc');
+ var libbcmath = _bc();
+
+ scale = parseInt(scale, 10);
+ if (isNaN(scale)) {
+ return false;
+ }
+ if (scale < 0) {
+ return false;
+ }
+ libbcmath.scale = scale;
+
+ return true;
+};
+//# sourceMappingURL=bcscale.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcscale.js.map b/node_modules/locutus/php/bc/bcscale.js.map
new file mode 100644
index 0000000..7b2e80d
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcscale.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/bc/bcscale.js"],"names":["module","exports","bcscale","scale","_bc","require","libbcmath","parseInt","isNaN"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,KAAlB,EAAyB;AACxC;AACA;AACA;AACA;;AAEA,MAAIC,MAAMC,QAAQ,iBAAR,CAAV;AACA,MAAIC,YAAYF,KAAhB;;AAEAD,UAAQI,SAASJ,KAAT,EAAgB,EAAhB,CAAR;AACA,MAAIK,MAAML,KAAN,CAAJ,EAAkB;AAChB,WAAO,KAAP;AACD;AACD,MAAIA,QAAQ,CAAZ,EAAe;AACb,WAAO,KAAP;AACD;AACDG,YAAUH,KAAV,GAAkBA,KAAlB;;AAEA,SAAO,IAAP;AACD,CAnBD","file":"bcscale.js","sourcesContent":["module.exports = function bcscale (scale) {\n // discuss at: http://locutus.io/php/bcscale/\n // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)\n // example 1: bcscale(1)\n // returns 1: true\n\n var _bc = require('../_helpers/_bc')\n var libbcmath = _bc()\n\n scale = parseInt(scale, 10)\n if (isNaN(scale)) {\n return false\n }\n if (scale < 0) {\n return false\n }\n libbcmath.scale = scale\n\n return true\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcsub.js b/node_modules/locutus/php/bc/bcsub.js
new file mode 100644
index 0000000..c4c1f50
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcsub.js
@@ -0,0 +1,39 @@
+'use strict';
+
+module.exports = function bcsub(leftOperand, rightOperand, scale) {
+ // discuss at: http://locutus.io/php/bcsub/
+ // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)
+ // example 1: bcsub('1', '2')
+ // returns 1: '-1'
+ // example 2: bcsub('-1', '5', 4)
+ // returns 2: '-6.0000'
+ // example 3: bcsub('8728932001983192837219398127471', '1928372132132819737213', 2)
+ // returns 3: '8728932000054820705086578390258.00'
+
+ var _bc = require('../_helpers/_bc');
+ var libbcmath = _bc();
+
+ var first, second, result;
+
+ if (typeof scale === 'undefined') {
+ scale = libbcmath.scale;
+ }
+ scale = scale < 0 ? 0 : scale;
+
+ // create objects
+ first = libbcmath.bc_init_num();
+ second = libbcmath.bc_init_num();
+ result = libbcmath.bc_init_num();
+
+ first = libbcmath.php_str2num(leftOperand.toString());
+ second = libbcmath.php_str2num(rightOperand.toString());
+
+ result = libbcmath.bc_sub(first, second, scale);
+
+ if (result.n_scale > scale) {
+ result.n_scale = scale;
+ }
+
+ return result.toString();
+};
+//# sourceMappingURL=bcsub.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/bcsub.js.map b/node_modules/locutus/php/bc/bcsub.js.map
new file mode 100644
index 0000000..58040f9
--- /dev/null
+++ b/node_modules/locutus/php/bc/bcsub.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/bc/bcsub.js"],"names":["module","exports","bcsub","leftOperand","rightOperand","scale","_bc","require","libbcmath","first","second","result","bc_init_num","php_str2num","toString","bc_sub","n_scale"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,WAAhB,EAA6BC,YAA7B,EAA2CC,KAA3C,EAAkD;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,MAAMC,QAAQ,iBAAR,CAAV;AACA,MAAIC,YAAYF,KAAhB;;AAEA,MAAIG,KAAJ,EAAWC,MAAX,EAAmBC,MAAnB;;AAEA,MAAI,OAAON,KAAP,KAAiB,WAArB,EAAkC;AAChCA,YAAQG,UAAUH,KAAlB;AACD;AACDA,UAAUA,QAAQ,CAAT,GAAc,CAAd,GAAkBA,KAA3B;;AAEA;AACAI,UAAQD,UAAUI,WAAV,EAAR;AACAF,WAASF,UAAUI,WAAV,EAAT;AACAD,WAASH,UAAUI,WAAV,EAAT;;AAEAH,UAAQD,UAAUK,WAAV,CAAsBV,YAAYW,QAAZ,EAAtB,CAAR;AACAJ,WAASF,UAAUK,WAAV,CAAsBT,aAAaU,QAAb,EAAtB,CAAT;;AAEAH,WAASH,UAAUO,MAAV,CAAiBN,KAAjB,EAAwBC,MAAxB,EAAgCL,KAAhC,CAAT;;AAEA,MAAIM,OAAOK,OAAP,GAAiBX,KAArB,EAA4B;AAC1BM,WAAOK,OAAP,GAAiBX,KAAjB;AACD;;AAED,SAAOM,OAAOG,QAAP,EAAP;AACD,CAnCD","file":"bcsub.js","sourcesContent":["module.exports = function bcsub (leftOperand, rightOperand, scale) {\n // discuss at: http://locutus.io/php/bcsub/\n // original by: lmeyrick (https://sourceforge.net/projects/bcmath-js/)\n // example 1: bcsub('1', '2')\n // returns 1: '-1'\n // example 2: bcsub('-1', '5', 4)\n // returns 2: '-6.0000'\n // example 3: bcsub('8728932001983192837219398127471', '1928372132132819737213', 2)\n // returns 3: '8728932000054820705086578390258.00'\n\n var _bc = require('../_helpers/_bc')\n var libbcmath = _bc()\n\n var first, second, result\n\n if (typeof scale === 'undefined') {\n scale = libbcmath.scale\n }\n scale = ((scale < 0) ? 0 : scale)\n\n // create objects\n first = libbcmath.bc_init_num()\n second = libbcmath.bc_init_num()\n result = libbcmath.bc_init_num()\n\n first = libbcmath.php_str2num(leftOperand.toString())\n second = libbcmath.php_str2num(rightOperand.toString())\n\n result = libbcmath.bc_sub(first, second, scale)\n\n if (result.n_scale > scale) {\n result.n_scale = scale\n }\n\n return result.toString()\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/index.js b/node_modules/locutus/php/bc/index.js
new file mode 100644
index 0000000..477a720
--- /dev/null
+++ b/node_modules/locutus/php/bc/index.js
@@ -0,0 +1,10 @@
+'use strict';
+
+module.exports['bcadd'] = require('./bcadd');
+module.exports['bccomp'] = require('./bccomp');
+module.exports['bcdiv'] = require('./bcdiv');
+module.exports['bcmul'] = require('./bcmul');
+module.exports['bcround'] = require('./bcround');
+module.exports['bcscale'] = require('./bcscale');
+module.exports['bcsub'] = require('./bcsub');
+//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/bc/index.js.map b/node_modules/locutus/php/bc/index.js.map
new file mode 100644
index 0000000..0be3879
--- /dev/null
+++ b/node_modules/locutus/php/bc/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/bc/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B;AACAF,OAAOC,OAAP,CAAe,QAAf,IAA2BC,QAAQ,UAAR,CAA3B;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B;AACAF,OAAOC,OAAP,CAAe,SAAf,IAA4BC,QAAQ,WAAR,CAA5B;AACAF,OAAOC,OAAP,CAAe,SAAf,IAA4BC,QAAQ,WAAR,CAA5B;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B","file":"index.js","sourcesContent":["module.exports['bcadd'] = require('./bcadd')\nmodule.exports['bccomp'] = require('./bccomp')\nmodule.exports['bcdiv'] = require('./bcdiv')\nmodule.exports['bcmul'] = require('./bcmul')\nmodule.exports['bcround'] = require('./bcround')\nmodule.exports['bcscale'] = require('./bcscale')\nmodule.exports['bcsub'] = require('./bcsub')\n"]} \ No newline at end of file