Merge branch 'develop' into fix/2071

This commit is contained in:
Matthew Penner
2020-07-11 12:29:04 -06:00
committed by GitHub
194 changed files with 5396 additions and 5416 deletions

View File

@@ -18,3 +18,5 @@ export function megabytesToHuman (mb: number): string {
export const randomInt = (low: number, high: number) => Math.floor(Math.random() * (high - low) + low);
export const cleanDirectoryPath = (path: string) => path.replace(/(^#\/*)|(\/(\/*))|(^$)/g, '/');
export const capitalize = (s: string) => s.charAt(0).toUpperCase() + s.slice(1).toLowerCase();