| var baseDelay = require('./_baseDelay'), |
| baseRest = require('./_baseRest'); |
| * Defers invoking the `func` until the current call stack has cleared. Any |
| * additional arguments are provided to `func` when it's invoked. |
| * @param {Function} func The function to defer. |
| * @param {...*} [args] The arguments to invoke `func` with. |
| * @returns {number} Returns the timer id. |
| * _.defer(function(text) { |
| * // => Logs 'deferred' after one millisecond. |
| var defer = baseRest(function(func, args) { |
| return baseDelay(func, 1, args); |