mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-03 06:36:44 +00:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
|
export class StringUtility {
|
||
|
public static toNumber(num: string): number {
|
||
|
return Number(num);
|
||
|
}
|
||
|
|
||
|
public static toBoolean(valueStr: string): boolean {
|
||
|
return valueStr === "true";
|
||
|
}
|
||
|
}
|