0
0
mirror of https://github.com/Doodle3D/Doodle3D-API synced 2024-07-01 15:01:21 +02:00
Doodle3D-API/src/utils.js

6 lines
110 B
JavaScript
Raw Normal View History

export function sleep (time) {
return new Promise((resolve, reject) => {
2015-10-13 11:03:18 +02:00
setTimeout(resolve, time);
});
}