diff options
Diffstat (limited to 'includes/external/school/node_modules/lodash/stubArray.js')
-rw-r--r-- | includes/external/school/node_modules/lodash/stubArray.js | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/includes/external/school/node_modules/lodash/stubArray.js b/includes/external/school/node_modules/lodash/stubArray.js deleted file mode 100644 index f460c15..0000000 --- a/includes/external/school/node_modules/lodash/stubArray.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * This method returns a new empty array. - * - * @static - * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {Array} Returns the new empty array. - * @example - * - * var arrays = _.times(2, _.stubArray); - * - * console.log(arrays); - * // => [[], []] - * - * console.log(arrays[0] === arrays[1]); - * // => false - */ -function stubArray() { - return []; -} - -module.exports = stubArray; |