Files
lodash/stubString.js
2017-01-09 17:38:33 -08:00

18 lines
269 B
JavaScript

/**
* This method returns an empty string.
*
* @static
* @since 4.13.0
* @category Util
* @returns {string} Returns the empty string.
* @example
*
* times(2, stubString);
* // => ['', '']
*/
function stubString() {
return '';
}
export default stubString;