install-nix-action/node_modules/lodash/noop.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00

17 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;