Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stubString.js 290B

123456789101112131415161718
  1. /**
  2. * This method returns an empty string.
  3. *
  4. * @static
  5. * @memberOf _
  6. * @since 4.13.0
  7. * @category Util
  8. * @returns {string} Returns the empty string.
  9. * @example
  10. *
  11. * _.times(2, _.stubString);
  12. * // => ['', '']
  13. */
  14. function stubString() {
  15. return '';
  16. }
  17. module.exports = stubString;