Newer
Older
alert / js / node_modules / lodash / stubString.js
@Réz István Réz István on 18 Nov 2021 290 bytes first commit
/**
 * 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;