mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 07:47:49 +00:00
17 lines
229 B
JavaScript
17 lines
229 B
JavaScript
/**
|
|
* This method returns `undefined`.
|
|
*
|
|
* @static
|
|
* @since 2.3.0
|
|
* @category Util
|
|
* @example
|
|
*
|
|
* times(2, noop);
|
|
* // => [undefined, undefined]
|
|
*/
|
|
function noop() {
|
|
// No operation performed.
|
|
}
|
|
|
|
export default noop;
|