9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
|
var restArgs = require('./restArgs');
|
||
|
exports = restArgs(function(fn, wait, args) {
|
||
|
return setTimeout(function() {
|
||
|
return fn.apply(null, args);
|
||
|
}, wait);
|
||
|
});
|
||
|
|
||
|
module.exports = exports;
|