cosmos-explorer/src/Shared/StringUtility.ts
2021-03-09 19:33:29 -06:00

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";
}