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