mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
24 lines
691 B
JavaScript
24 lines
691 B
JavaScript
/**
|
|
* 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
|