From 954583f3d56fbfb60321725f13ad092e536e3737 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Wed, 7 Nov 2018 22:10:16 +0100
Subject: Removed node_modules

---
 node_modules/locutus/php/bc/bcdiv.js | 44 ------------------------------------
 1 file changed, 44 deletions(-)
 delete mode 100644 node_modules/locutus/php/bc/bcdiv.js

(limited to 'node_modules/locutus/php/bc/bcdiv.js')

diff --git a/node_modules/locutus/php/bc/bcdiv.js b/node_modules/locutus/php/bc/bcdiv.js
deleted file mode 100644
index 1cbcd79..0000000
--- a/node_modules/locutus/php/bc/bcdiv.js
+++ /dev/null
@@ -1,44 +0,0 @@
-'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
-- 
cgit v1.2.3