0
0
mirror of https://github.com/Doodle3D/Doodle3D-API synced 2024-11-15 00:37:55 +01:00
Doodle3D-API/src/utils.js

6 lines
113 B
JavaScript
Raw Normal View History

2016-04-21 15:44:20 +02:00
export function sleep(time) {
2016-04-21 15:52:23 +02:00
return new Promise((resolve, reject) => {
setTimeout(resolve, time);
});
}