Version 1
[yaffs-website] / node_modules / grunt-legacy-log / node_modules / lodash / utility / noop.js
diff --git a/node_modules/grunt-legacy-log/node_modules/lodash/utility/noop.js b/node_modules/grunt-legacy-log/node_modules/lodash/utility/noop.js
new file mode 100644 (file)
index 0000000..56d6513
--- /dev/null
@@ -0,0 +1,19 @@
+/**
+ * A no-operation function that returns `undefined` regardless of the
+ * arguments it receives.
+ *
+ * @static
+ * @memberOf _
+ * @category Utility
+ * @example
+ *
+ * var object = { 'user': 'fred' };
+ *
+ * _.noop(object) === undefined;
+ * // => true
+ */
+function noop() {
+  // No operation performed.
+}
+
+module.exports = noop;