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