ohctechv3/.svn/pristine/98/98bd91112ec0aaaa2d0b295173aac8b98bda13a0.svn-base
2024-10-28 15:03:36 +05:30

19 lines
288 B
Plaintext

/**
* 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 '';
}
export default stubString;