mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
/**
|
|
* @param {number} millis
|
|
*/
|
|
async function sleep(millis) {
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => resolve('Slept enough!'), millis);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* let t = Date.now()
|
|
* sleep(100).then(() => console.log(Date.now() - t)) // 100
|
|
*/
|