mirror of
https://github.com/tiny-craft/tiny-rdm.git
synced 2025-05-11 12:58:05 +08:00
4 lines
96 B
JavaScript
4 lines
96 B
JavaScript
export const timeout = (ms) => {
|
|
return new Promise((resolve) => setTimeout(resolve, ms))
|
|
}
|