zzz / frontend /src /utils /is-number.ts
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
95 Bytes
export const isNumber = (value: string | number): boolean =>
!Number.isNaN(Number(value));