PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
inquirer
/
node_modules
/
lodash
/
function
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;
[-] bind.js
[edit]
[-] throttle.js
[edit]
[-] partial.js
[edit]
[-] flow.js
[edit]
[-] before.js
[edit]
[-] ary.js
[edit]
[-] memoize.js
[edit]
[-] spread.js
[edit]
[+]
..
[-] defer.js
[edit]
[-] delay.js
[edit]
[-] debounce.js
[edit]
[-] once.js
[edit]
[-] modArgs.js
[edit]
[-] restParam.js
[edit]
[-] backflow.js
[edit]
[-] bindAll.js
[edit]
[-] wrap.js
[edit]
[-] rearg.js
[edit]
[-] curry.js
[edit]
[-] bindKey.js
[edit]
[-] curryRight.js
[edit]
[-] partialRight.js
[edit]
[-] negate.js
[edit]
[-] compose.js
[edit]
[-] after.js
[edit]
[-] flowRight.js
[edit]