Sha256: 50334a67976bdcb4bee1544653dbde831c1c1acac85c7226fa3bebdb74b8e1e1
Contents?: true
Size: 328 Bytes
Versions: 153
Compression:
Stored size: 328 Bytes
Contents
/** * A no-operation function that returns `undefined` regardless of the * arguments it receives. * * @static * @memberOf _ * @category Utility * @example * * var object = { 'user': 'fred' }; * * _.noop(object) === undefined; * // => true */ function noop() { // No operation performed. } module.exports = noop;
Version data entries
153 entries across 80 versions & 8 rubygems