Package Exports
- number-is-float
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 (number-is-float) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
number-is-float 
Check if something is a float
Install
$ npm install --save number-is-float
Usage
var numberIsFloat = require('number-is-float');
numberIsFloat(1.5);
//=> true
numberIsFloat(1);
//=> false
Related
- number-is-integer - ES2015
Number.isInteger()
ponyfill
License
MIT © Sindre Sorhus