UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

7 lines (6 loc) 223 B
export function getInputValueLength(value: string | number | undefined | null) { if (value === undefined || value === null) { return 0 } return typeof value === 'string' ? value.length : value.toString().length }