fixed issue when checking if a sketch is temp

convert all windows drive letters to lower case. [ATL-380]

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
Akos Kitta
2020-08-10 13:46:36 +02:00
parent aa2bed8d39
commit bc4c3e04f5
2 changed files with 21 additions and 2 deletions

View File

@@ -3,3 +3,7 @@ export const naturalCompare: (left: string, right: string) => number = require('
export function notEmpty(arg: string | undefined | null): arg is string {
return !!arg;
}
export function firstToLowerCase(what: string): string {
return what.charAt(0).toLowerCase() + what.slice(1);
}