mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 05:30:40 +00:00
4 lines
108 B
TypeScript
4 lines
108 B
TypeScript
export async function delay(ms: number = 0) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|