Files
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

7 lines
167 B
JavaScript

/**
* A utility function that executes a callback after a specified number of milliseconds.
*/
export function afterSleep(ms, cb) {
return setTimeout(cb, ms);
}