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.
770 B
770 B
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.