UNPKG

@jk-core/components

Version:
5 lines 158 B
export const allowDecimal = (val: number) => { const str = val.toString(); const decimal = str.split('.')[1]; return !decimal || decimal.length <= 2; };