62a29bd521e539409ef7980f23f89a360fa70fa151f5c76ee87a2f07bf509da6c8402ae2c4f9cb34c82db9c48eea7fcf696584cb8b315c7045abc93100d645 250 B

1234567891011121314151617
  1. /**
  2. * This method returns `undefined`.
  3. *
  4. * @static
  5. * @memberOf _
  6. * @since 2.3.0
  7. * @category Util
  8. * @example
  9. *
  10. * _.times(2, _.noop);
  11. * // => [undefined, undefined]
  12. */
  13. function noop() {
  14. // No operation performed.
  15. }
  16. module.exports = noop;