UNPKG

standard-float

Version:

Ensure input passed is of type float rounded to two decimal places

5 lines (4 loc) 96 B
function stdFloat(x){ return Number.parseFloat(x).toFixed(2) } module.exports = stdFloat