Sha256: 562163feb8260aa66a549d67cc6c3fd3a612f0a671acd2df9eb3270aef8e3b89
Contents?: true
Size: 636 Bytes
Versions: 14
Compression:
Stored size: 636 Bytes
Contents
var baseDelay = require('../internal/baseDelay'); /** * Defers invoking the `func` until the current call stack has cleared. Any * additional arguments are provided to `func` when it is 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 */ function defer(func) { return baseDelay(func, 1, arguments, 1); } module.exports = defer;
Version data entries
14 entries across 7 versions & 1 rubygems