Merge branch 'develop' into fix/2071

This commit is contained in:
Matthew Penner 2020-07-11 12:29:04 -06:00 committed by GitHub
commit a9bb692112
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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();