uni-ticket-system/node_modules/licia/delay.js

9 lines
201 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
var restArgs = require('./restArgs');
exports = restArgs(function(fn, wait, args) {
return setTimeout(function() {
return fn.apply(null, args);
}, wait);
});
module.exports = exports;