export function wait(ms) { return new Promise((resolve) => { setTimeout(() => { resolve(null); }, ms); }); }