diff options
Diffstat (limited to 'node_modules/lodash/noop.js')
-rw-r--r-- | node_modules/lodash/noop.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/lodash/noop.js b/node_modules/lodash/noop.js new file mode 100644 index 0000000..3c0862e --- /dev/null +++ b/node_modules/lodash/noop.js @@ -0,0 +1,17 @@ +/** + * 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; |