Files
lodash/noop.js
John-David Dalton 0cf3476f14 Bump to v4.13.0.
2016-05-22 19:38:19 -07:00

18 lines
252 B
JavaScript

/**
* A method that returns `undefined`.
*
* @static
* @memberOf _
* @since 2.3.0
* @category Util
* @example
*
* _.times(2, _.noop);
* // => [undefined, undefined]
*/
function noop() {
// No operation performed.
}
module.exports = noop;