diff options
Diffstat (limited to 'school/node_modules/lodash/stubString.js')
-rw-r--r-- | school/node_modules/lodash/stubString.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/school/node_modules/lodash/stubString.js b/school/node_modules/lodash/stubString.js deleted file mode 100644 index 2db0bed..0000000 --- a/school/node_modules/lodash/stubString.js +++ /dev/null @@ -1,18 +0,0 @@ -/** - * This method returns an empty string. - * - * @static - * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {string} Returns the empty string. - * @example - * - * _.times(2, _.stubString); - * // => ['', ''] - */ -function stubString() { - return ''; -} - -module.exports = stubString; |