gitana / alpaca

Alpaca provides the easiest way to generate interactive HTML5 forms for web and mobile applications. It uses JSON Schema and simple Handlebars templates to generate great looking, dynamic user interfaces on top of Twitter Bootstrap, jQuery UI, jQuery Mobile and HTML5.
http://www.alpacajs.org
Other
1.29k stars 371 forks source link

multipleOf doesn't work for non-whole number settings #675

Open FatPanther opened 5 years ago

FatPanther commented 5 years ago

If I try to use "multipleOf": 0.01 in a schema to restrict number entries to hundredths, values such as 3.55 don't pass validation, due to issues with js floating point precision. 3.55 mod 0.01 should be 0, however in js 3.55 % 0.01 = 0.009999999999999748