A suite to track Project Diva score statistics and ratings / D4DJ event data.
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.
 
 
 
 
 
 
projectdivar/server/node_modules/is-float-array
sigonasr2 0785506fad Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
..
.travis.yml Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
index.js Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
package.json Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
readme.md Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
test.js Update and test twitter endpoints and connections. Prepare java spring server 4 years ago

readme.md

is-float-array Build Status unstable

Test if an array can store floats. In particular, Float32Array, Float64Array and Array are detected as float arrays.

Usage

npm install is-float-array

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.