mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-09 06:33:03 -04:00
Add more Webpack Commons & utils
This commit is contained in:
parent
bb7332cefd
commit
2105de8ca5
4 changed files with 25 additions and 0 deletions
|
@ -125,3 +125,7 @@ export function humanFriendlyJoin(elements: any[], mapper: (e: any) => string =
|
|||
export function classes(...classes: string[]) {
|
||||
return classes.join(" ");
|
||||
}
|
||||
|
||||
export function sleep(ms: number): Promise<void> {
|
||||
return new Promise(r => setTimeout(r, ms));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue