-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d204686
commit 875c821
Showing
3 changed files
with
153 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,47 @@ | ||
export async function promiseEach<T>(promiseArray: Promise<T>[], thenCallback: (item: T) => any) { | ||
for (const item of promiseArray) { | ||
item.then(data => thenCallback(data)) | ||
} | ||
export async function promiseEach<T>( | ||
promiseArray: Promise<T>[], | ||
thenCallback: (item: T) => any, | ||
) { | ||
for (const item of promiseArray) { | ||
item.then(data => thenCallback(data)); | ||
} | ||
} | ||
|
||
export const weekday = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] | ||
export const weekday = [ | ||
'Sunday', | ||
'Monday', | ||
'Tuesday', | ||
'Wednesday', | ||
'Thursday', | ||
'Friday', | ||
'Saturday', | ||
]; | ||
|
||
export function getDayOfWeek(dateString: string) { | ||
const date = new Date(dateString); | ||
return weekday[date.getDay()]; | ||
const date = new Date(dateString); | ||
return weekday[date.getDay()]; | ||
} | ||
|
||
export function humanFileSize(bytes: number, si = false, dp = 1) { | ||
const thresh = si ? 1000 : 1024; | ||
|
||
if (Math.abs(bytes) < thresh) { | ||
return bytes + ' B'; | ||
} | ||
|
||
const units = si | ||
? ['kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] | ||
: ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']; | ||
let u = -1; | ||
const r = 10 ** dp; | ||
|
||
do { | ||
bytes /= thresh; | ||
++u; | ||
} while ( | ||
Math.round(Math.abs(bytes) * r) / r >= thresh && | ||
u < units.length - 1 | ||
); | ||
|
||
return bytes.toFixed(dp) + ' ' + units[u]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters