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.

noop.js 250B

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;