// utils/async.mjs /** * @param {number} ms * @returns {Promise} */ export async function sleep(ms) { return new Promise(r => setTimeout(r, ms)); }