Version 1
[yaffs-website] / node_modules / grunt-uncss / node_modules / lodash / noop.js
diff --git a/node_modules/grunt-uncss/node_modules/lodash/noop.js b/node_modules/grunt-uncss/node_modules/lodash/noop.js
new file mode 100644 (file)
index 0000000..3c0862e
--- /dev/null
@@ -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;