mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-21 10:39:26 +08:00
a0f00e5017
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
12 lines
325 B
JavaScript
12 lines
325 B
JavaScript
var restArguments = require('./restArguments.js');
|
|
|
|
// Delays a function for the given number of milliseconds, and then calls
|
|
// it with the arguments supplied.
|
|
var delay = restArguments(function(func, wait, args) {
|
|
return setTimeout(function() {
|
|
return func.apply(null, args);
|
|
}, wait);
|
|
});
|
|
|
|
module.exports = delay;
|