Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/lodash/noop.js
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

18 lines
250 B
JavaScript

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