The delay before resolving the promise (in milliseconds).
The promise to be resolved.
import { standby } from '@untemps/utils/async/standby'const fn = async () => { console.log("Start delay") await standby(3000) console.log("End delay")}fn() Copy
import { standby } from '@untemps/utils/async/standby'const fn = async () => { console.log("Start delay") await standby(3000) console.log("End delay")}fn()
The delay before resolving the promise (in milliseconds).