Public
Script
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

A helper to wait for X milliseconds of time.

Call it like await @vtdocs.sleep(1000)

1
2
3
export const sleep = async (ms: number) => {
await new Promise((r) => setTimeout(r, ms));
};
October 23, 2023