mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
Update import project to have friendly names for the extract file organization options (#11123)
* udpate import to have friendly names for the extract file organization options * update tests * update message * remove camelcase stuff * use localized constants instead of enum
This commit is contained in:
@@ -64,13 +64,6 @@ export async function exists(path: string): Promise<boolean> {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert camelCase input to PascalCase
|
||||
*/
|
||||
export function toPascalCase(input: string): string {
|
||||
return input.charAt(0).toUpperCase() + input.substr(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* get quoted path to be used in any commandline argument
|
||||
* @param filePath
|
||||
|
||||
Reference in New Issue
Block a user