├── .gitignore ├── .travis.yml ├── README.md ├── __test__ └── array.test.js ├── array ├── concat.js ├── every.js ├── filter.js ├── isArray.js ├── map.js ├── of.js ├── reduce.js ├── some.js └── toString.js ├── license.md ├── logo.png ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/README.md -------------------------------------------------------------------------------- /__test__/array.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/__test__/array.test.js -------------------------------------------------------------------------------- /array/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/concat.js -------------------------------------------------------------------------------- /array/every.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/every.js -------------------------------------------------------------------------------- /array/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/filter.js -------------------------------------------------------------------------------- /array/isArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/isArray.js -------------------------------------------------------------------------------- /array/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/map.js -------------------------------------------------------------------------------- /array/of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/of.js -------------------------------------------------------------------------------- /array/reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/reduce.js -------------------------------------------------------------------------------- /array/some.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/some.js -------------------------------------------------------------------------------- /array/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/array/toString.js -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/license.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/roll-your-own/HEAD/yarn.lock --------------------------------------------------------------------------------