mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 23:45:48 +01:00
5 lines
89 B
TypeScript
5 lines
89 B
TypeScript
|
|
export const sleep = (ms: number) =>
|
||
|
|
new Promise((r) => {
|
||
|
|
setTimeout(r, ms);
|
||
|
|
});
|