summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/lodash/noop.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/lodash/noop.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/lodash/noop.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/lodash/noop.js b/bin/wiki/ImportarDesdeURL/node_modules/lodash/noop.js
new file mode 100644
index 00000000..3c0862ee
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/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;