CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
README.md17 linesDownload Raw Back to is-arrayish
1# node-is-arrayish [![Travis-CI.org Build Status](https://img.shields.io/travis/Qix-/node-is-arrayish.svg?style=flat-square)](https://travis-ci.org/Qix-/node-is-arrayish) [![Coveralls.io Coverage Rating](https://img.shields.io/coveralls/Qix-/node-is-arrayish.svg?style=flat-square)](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 
basant307/AI_Governance_Project · CoolFace