Urara-Blog/node_modules/.pnpm-store/v3/files/a5/54c4a0d02a1ba06704feb1999f3d46a222cb5412dd5d6e87e8c5d4d7bdc232711af08665a58be305ef7bfdf5b8ce750d831e84f9dec794a90ab651439cc5a2
2022-08-14 01:14:53 +08:00

18 lines
290 B
Text

/**
* 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;