mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-25 16:09:42 +01:00
7 lines
189 B
JavaScript
7 lines
189 B
JavaScript
export const sleep = (duration) =>
|
|
new Promise((resolve) => setTimeout(() => {
|
|
console.log('Sleeping for ' + (duration/1000) + " secs");
|
|
resolve();
|
|
}, duration));
|
|
|
|
//"\\.e2e\\.js$",
|