mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-23 20:48:11 +00:00
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
export function toNumber(num: string | null): number {
|
|
return Number(num);
|
|
}
|
|
|
|
export function toBoolean(valueStr: string | null): boolean {
|
|
return valueStr === "true";
|
|
}
|