diff options
author | Marvin Borner | 2018-11-07 22:10:16 +0100 |
---|---|---|
committer | Marvin Borner | 2018-11-07 22:10:17 +0100 |
commit | 954583f3d56fbfb60321725f13ad092e536e3737 (patch) | |
tree | a0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/php/bc/bcsub.js | |
parent | 1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff) |
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/bc/bcsub.js')
-rw-r--r-- | node_modules/locutus/php/bc/bcsub.js | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/node_modules/locutus/php/bc/bcsub.js b/node_modules/locutus/php/bc/bcsub.js deleted file mode 100644 index c4c1f50..0000000 --- a/node_modules/locutus/php/bc/bcsub.js +++ /dev/null @@ -1,39 +0,0 @@ -'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 |