Package Exports
- fixed-floor
 
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fixed-floor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
fixed-floor
Math.floor with fixed, formats a number using fixed-point notation and returns a number.
Usage
npm i --save fixed-floor
var floor = require('fixed-floor');
// floor(number, toFixed);
floor(125.34567, 2); // 125.34
floor(125.34567); // 125
floor(125.34567, -1); // 120License
ISC@ProtoTeam.