summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/cli-table2/node_modules/lodash/function/defer.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/cli-table2/node_modules/lodash/function/defer.js')
-rw-r--r--deps/npm/node_modules/cli-table2/node_modules/lodash/function/defer.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/deps/npm/node_modules/cli-table2/node_modules/lodash/function/defer.js b/deps/npm/node_modules/cli-table2/node_modules/lodash/function/defer.js
new file mode 100644
index 0000000000..3accbf9b10
--- /dev/null
+++ b/deps/npm/node_modules/cli-table2/node_modules/lodash/function/defer.js
@@ -0,0 +1,25 @@
+var baseDelay = require('../internal/baseDelay'),
+ restParam = require('./restParam');
+
+/**
+ * Defers invoking the `func` until the current call stack has cleared. Any
+ * additional arguments are provided to `func` when it's invoked.
+ *
+ * @static
+ * @memberOf _
+ * @category Function
+ * @param {Function} func The function to defer.
+ * @param {...*} [args] The arguments to invoke the function with.
+ * @returns {number} Returns the timer id.
+ * @example
+ *
+ * _.defer(function(text) {
+ * console.log(text);
+ * }, 'deferred');
+ * // logs 'deferred' after one or more milliseconds
+ */
+var defer = restParam(function(func, args) {
+ return baseDelay(func, 1, args);
+});
+
+module.exports = defer;