1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-01 23:23:38 +00:00
Files
musix-oss/node_modules/lodash/stubString.js
MatteZ02 30022c7634 Modules
2020-03-03 22:30:50 +02: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;