basant307/AI_Governance_Project
048
1# node-is-arrayish [](https://travis-ci.org/Qix-/node-is-arrayish) [](https://coveralls.io/r/Qix-/node-is-arrayish)2> Determines if an object can be used like an Array3 4## Example5```javascript6var isArrayish = require('is-arrayish');7 8isArrayish([]); // true9isArrayish({__proto__: []}); // true10isArrayish({}); // false11isArrayish({length:10}); // false12```13 14## License15Licensed under the [MIT License](http://opensource.org/licenses/MIT).16You can find a copy of it in [LICENSE](LICENSE).17 