summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/lodash/math/floor.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/lodash/math/floor.js')
-rw-r--r--deps/npm/node_modules/lodash/math/floor.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/deps/npm/node_modules/lodash/math/floor.js b/deps/npm/node_modules/lodash/math/floor.js
deleted file mode 100644
index e4dcae8bf8..0000000000
--- a/deps/npm/node_modules/lodash/math/floor.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var createRound = require('../internal/createRound');
-
-/**
- * Calculates `n` rounded down to `precision`.
- *
- * @static
- * @memberOf _
- * @category Math
- * @param {number} n The number to round down.
- * @param {number} [precision=0] The precision to round down to.
- * @returns {number} Returns the rounded down number.
- * @example
- *
- * _.floor(4.006);
- * // => 4
- *
- * _.floor(0.046, 2);
- * // => 0.04
- *
- * _.floor(4060, -2);
- * // => 4000
- */
-var floor = createRound('floor');
-
-module.exports = floor;