mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
use function over const lambda
This commit is contained in:
parent
0a209fc340
commit
73990acf7a
@ -57,4 +57,6 @@ export function deleteIndexedDB(dbName) {
|
||||
});
|
||||
}
|
||||
|
||||
export const sleep = (ms) => new Promise((resolve) => { setTimeout(resolve, ms); });
|
||||
export function sleep(ms) {
|
||||
return new Promise((resolve) => { setTimeout(resolve, ms); });
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user