1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-02-09 08:38:51 +01:00
2020-11-17 21:44:32 +01:00

19 lines
290 B
JavaScript

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