summaryrefslogtreecommitdiff
path: root/school/node_modules/lodash/_castSlice.js
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/lodash/_castSlice.js')
-rw-r--r--school/node_modules/lodash/_castSlice.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/school/node_modules/lodash/_castSlice.js b/school/node_modules/lodash/_castSlice.js
deleted file mode 100644
index 071faeb..0000000
--- a/school/node_modules/lodash/_castSlice.js
+++ /dev/null
@@ -1,18 +0,0 @@
-var baseSlice = require('./_baseSlice');
-
-/**
- * Casts `array` to a slice if it's needed.
- *
- * @private
- * @param {Array} array The array to inspect.
- * @param {number} start The start position.
- * @param {number} [end=array.length] The end position.
- * @returns {Array} Returns the cast slice.
- */
-function castSlice(array, start, end) {
- var length = array.length;
- end = end === undefined ? length : end;
- return (!start && end >= length) ? array : baseSlice(array, start, end);
-}
-
-module.exports = castSlice;