UNPKG

lodash

Version:

The modern build of lodash modular utilities.

18 lines (16 loc) 257 B
/** * A no-operation function. * * @static * @memberOf _ * @category Utility * @example * * var object = { 'user': 'fred' }; * _.noop(object) === undefined; * // => true */ function noop() { // No operation performed. } module.exports = noop;