mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-26 20:31:33 +00:00
Fixed typescript strict issue of Statusbar, hostedUtils, StringUtils etc (#785)
This commit is contained in:
committed by
GitHub
parent
0bbf9de963
commit
397231dca2
@@ -1,4 +1,4 @@
|
||||
export function stripSpacesFromString(inputString: string): string {
|
||||
export function stripSpacesFromString(inputString?: string): string | undefined {
|
||||
if (inputString === undefined || typeof inputString !== "string") {
|
||||
return inputString;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user