summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/cli-table2/node_modules/lodash/function/delay.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/cli-table2/node_modules/lodash/function/delay.js')
-rw-r--r--deps/npm/node_modules/cli-table2/node_modules/lodash/function/delay.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/deps/npm/node_modules/cli-table2/node_modules/lodash/function/delay.js b/deps/npm/node_modules/cli-table2/node_modules/lodash/function/delay.js
new file mode 100644
index 0000000000..d5eef27a9f
--- /dev/null
+++ b/deps/npm/node_modules/cli-table2/node_modules/lodash/function/delay.js
@@ -0,0 +1,26 @@
+var baseDelay = require('../internal/baseDelay'),
+ restParam = require('./restParam');
+
+/**
+ * Invokes `func` after `wait` milliseconds. Any additional arguments are
+ * provided to `func` when it's invoked.
+ *
+ * @static
+ * @memberOf _
+ * @category Function
+ * @param {Function} func The function to delay.
+ * @param {number} wait The number of milliseconds to delay invocation.
+ * @param {...*} [args] The arguments to invoke the function with.
+ * @returns {number} Returns the timer id.
+ * @example
+ *
+ * _.delay(function(text) {
+ * console.log(text);
+ * }, 1000, 'later');
+ * // => logs 'later' after one second
+ */
+var delay = restParam(function(func, wait, args) {
+ return baseDelay(func, wait, args);
+});
+
+module.exports = delay;