UNPKG

@yoroi/common

Version:

The Common package of Yoroi SDK

5 lines (4 loc) 112 B
export function toNumber(input: unknown) { const parsed = Number(input) return isNaN(parsed) ? 0 : parsed }