bpms_site/.svn/pristine/01/0181c0f3fd136f667ae4e32218712ec53736171c.svn-base
2025-11-02 16:38:49 +03:30

9 lines
248 B
Plaintext

/**
* Wait for a given number of milliseconds and then resolve.
*
* @param ms the number of milliseconds to wait
*/ export async function wait(ms) {
return new Promise((resolve)=>setTimeout(resolve, ms));
}
//# sourceMappingURL=wait.js.map