Urara-Blog/node_modules/.pnpm-store/v3/files/62/62a29bd521e539409ef7980f23f89a360fa70fa151f5c76ee87a2f07bf509da6c8402ae2c4f9cb34c82db9c48eea7fcf696584cb8b315c7045abc93100d645
2022-08-14 01:14:53 +08:00

17 lines
250 B
Text

/**
* 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;