summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/helpers/mod.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/helpers/mod.js')
-rw-r--r--node_modules/es-abstract/helpers/mod.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/node_modules/es-abstract/helpers/mod.js b/node_modules/es-abstract/helpers/mod.js
deleted file mode 100644
index 67c8b78..0000000
--- a/node_modules/es-abstract/helpers/mod.js
+++ /dev/null
@@ -1,8 +0,0 @@
-'use strict';
-
-var $floor = Math.floor;
-
-module.exports = function mod(number, modulo) {
- var remain = number % modulo;
- return $floor(remain >= 0 ? remain : remain + modulo);
-};