COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220220618/https://github.com/lodash/lodash/blob/master/delay.js
Permalink
Cannot retrieve contributors at this time
23 lines (22 sloc)
691 Bytes
/**
* Invokes `func` after `wait` milliseconds. Any additional arguments are
* provided to `func` when it's invoked.
*
* @since 0.1.0
* @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 `func` with.
* @returns {number } Returns the timer id.
* @example
*
* delay(text => console.log(text), 1000, 'later')
* // => Logs 'later' after one second.
*/
function delay ( func , wait , ...args ) {
if ( typeof func !== 'function' ) {
throw new TypeError ( 'Expected a function' )
}
return setTimeout ( func , + wait || 0 , ...args )
}
export default delay
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.