UNPKG

@ismail424/svelte-formly

Version:

<p align="center"> <img width="100%" height="300" src="./logo.png" alt="Svelte Formly" /> </p>

7 lines (6 loc) 216 B
export function max(val, args) { const maxValue = parseFloat(args[0]); val = val ? val : ""; const value = isNaN(val) ? val.length : parseFloat(val); return isNaN(value) ? true : value <= maxValue; }