mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2024-11-14 16:27:56 +01:00
6 lines
113 B
JavaScript
6 lines
113 B
JavaScript
export function sleep(time) {
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(resolve, time);
|
|
});
|
|
}
|