INIT
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
/**
|
||||
* A utility function that executes a callback after a specified number of milliseconds.
|
||||
*/
|
||||
export function afterSleep(ms, cb) {
|
||||
return setTimeout(cb, ms);
|
||||
}
|
||||
Reference in New Issue
Block a user