Math.floor with fixed, formats a number using fixed-point notation and returns a number.
npm install fixed-floor> Math.floor with fixed, formats a number using fixed-point notation and returns a number.
   
> npm i --save fixed-floor
``js
var floor = require('fixed-floor');
// floor(number, toFixed);
floor(125.34567, 2); // 125.34
floor(125.34567); // 125
floor(125.34567, -1); // 120
``
ISC@ProtoTeam.