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