You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sigonasr2
0785506fad
|
4 years ago | |
---|---|---|
.. | ||
.travis.yml | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago | |
readme.md | 4 years ago | |
test.js | 4 years ago |
readme.md
is-float-array
Test if an array can store floats. In particular, Float32Array, Float64Array and Array are detected as float arrays.
Usage
var isFloat = require('is-float-array');
isFloat(Array(10)) // true
isFloat(new Float32Array(10)) // true
isFloat(new Float64Array(10)) // true
isFloat(new Uint8Array(10)) // false
License
© 2018 Dmitry Yv. MIT License.