animate/webGl/my-threejs-test/node_modules/is-arrayish
Sam 907ebae4c0 larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
..
.editorconfig larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
.istanbul.yml larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
.npmignore larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
.travis.yml larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
LICENSE larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
README.md larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
index.js larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
package.json larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00

README.md

node-is-arrayish Travis-CI.org Build Status Coveralls.io Coverage Rating

Determines if an object can be used like an Array

Example

var isArrayish = require('is-arrayish');

isArrayish([]); // true
isArrayish({__proto__: []}); // true
isArrayish({}); // false
isArrayish({length:10}); // false

License

Licensed under the MIT License. You can find a copy of it in LICENSE.