Files
dogs/node_modules/lodash/noop.js
ChloeChen0423 7c63f2f07b 前端代码
2025-05-12 16:42:36 +09: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;