puter/tools/api-tester/lib/sleep.js
2025-01-09 15:51:50 -05:00

6 lines
116 B
JavaScript

module.exports = async function sleep (ms) {
await new Promise(rslv => {
setTimeout(rslv, ms);
})
}