{"_id":"array-every","_rev":"439973","name":"array-every","description":"Returns true if the callback returns truthy for all elements in the given array.","dist-tags":{"latest":"0.1.2"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"time":{"modified":"2021-08-05T06:31:40.000Z","created":"2014-12-12T12:07:22.023Z","0.1.2":"2015-05-08T00:05:17.476Z","0.1.1":"2014-12-12T12:09:55.171Z","0.1.0":"2014-12-12T12:07:22.023Z"},"users":{},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/array-every.git"},"versions":{"0.1.2":{"name":"array-every","description":"Returns true if the callback returns truthy for all elements in the given array.","version":"0.1.2","homepage":"https://github.com/jonschlinkert/array-every","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/array-every.git"},"bugs":{"url":"https://github.com/jonschlinkert/array-every/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/array-every/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["all","array","element","every","items","javascript","js","true","truthy","util"],"dependencies":{"make-iterator":"^0.1.1"},"gitHead":"dee802882b68870b926e6489f03d333173f0d922","_id":"array-every@0.1.2","_shasum":"be54cf7fbfc4c4777bba85c7af7edac2836d83ed","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"be54cf7fbfc4c4777bba85c7af7edac2836d83ed","size":2235,"noattachment":false,"key":"/array-every/-/array-every-0.1.2.tgz","tarball":"http://registry.cnpm.dingdandao.com/array-every/download/array-every-0.1.2.tgz"},"directories":{},"publish_time":1431043517476,"_cnpm_publish_time":1431043517476,"_hasShrinkwrap":false},"0.1.1":{"name":"array-every","description":"Returns true if the callback returns truthy for all elements in the given array.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/array-every","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/array-every.git"},"bugs":{"url":"https://github.com/jonschlinkert/array-every/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/array-every/blob/master/LICENSE-MIT"},"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["all","array","element","every","items","javascript","js","true","truthy","util"],"dependencies":{"make-iterator":"^0.1.1"},"_id":"array-every@0.1.1","_shasum":"46ccdb8d8fc5e63316866f8926dbb68c8f98633d","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"46ccdb8d8fc5e63316866f8926dbb68c8f98633d","size":2693,"noattachment":false,"key":"/array-every/-/array-every-0.1.1.tgz","tarball":"http://registry.cnpm.dingdandao.com/array-every/download/array-every-0.1.1.tgz"},"directories":{},"publish_time":1418386195171,"_cnpm_publish_time":1418386195171,"_hasShrinkwrap":false},"0.1.0":{"name":"array-every","description":"Returns true if the callback returns truthy for all elements in the given array.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/array-every","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/array-every.git"},"bugs":{"url":"https://github.com/jonschlinkert/array-every/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/array-every/blob/master/LICENSE-MIT"},"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"mocha":"*","should":"*"},"keywords":[],"dependencies":{"make-iterator":"^0.1.1"},"_id":"array-every@0.1.0","_shasum":"9677b2f394007a4553e553d311d26807e0db8833","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"9677b2f394007a4553e553d311d26807e0db8833","size":2652,"noattachment":false,"key":"/array-every/-/array-every-0.1.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/array-every/download/array-every-0.1.0.tgz"},"directories":{},"publish_time":1418386042023,"_cnpm_publish_time":1418386042023,"_hasShrinkwrap":false}},"readme":"# array-every [![NPM version](https://badge.fury.io/js/array-every.svg)](http://badge.fury.io/js/array-every)\n\n> Returns true if the callback returns truthy for all elements in the given array.\n\nBased on [mout's](http://moutjs.com/) implementation of `every`.\n\n## Install\n\n**Install with NPM**\n\nInstall with [npm](https://www.npmjs.com/)\n\n```bash\nnpm i array-every --save\n```\n\n**Install with Bower**\n\nInstall with [bower](http://bower.io/)\n\n```bash\nbower install array-every --save\n```\n\n## Usage\n\n```js\nvar every = require('array-every');\n\nevery(['a', 'b', 'c'], function (ele) {\n  return ele === 'a';\n});\n//=> false\n\nevery(['a', 'a', 'a'], function (ele) {\n  return ele === 'a';\n});\n//=> true\n```\n\n## Related projects\n\n* [array-every](https://github.com/jonschlinkert/array-every): Returns true if the callback returns truthy for all elements in the given array.\n* [array-slice](https://github.com/jonschlinkert/array-slice): Array-slice method. Slices `array` from the `start` index up to, but not including, the `end`… [more](https://github.com/jonschlinkert/array-slice)\n* [array-unique](https://github.com/jonschlinkert/array-unique): Return an array free of duplicate values. Fastest ES5 implementation.\n* [filter-array](https://github.com/jonschlinkert/filter-array): Iterates over the elements in an array, returning an array with only the elements for… [more](https://github.com/jonschlinkert/filter-array)\n* [index-of](https://github.com/jonschlinkert/index-of): Get the index of the first element in an array that returns truthy for the… [more](https://github.com/jonschlinkert/index-of)\n* [make-iterator](https://github.com/jonschlinkert/make-iterator): Convert an argument into a valid iterator. Based on the `.makeIterator()` implementation in mout https://github.com/mout/mout.\n\n## Running tests\n\nInstall dev dependencies:\n\n```bash\nnpm i -d && npm test\n```\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/array-every/issues/new)\n\n## Author\n\n**Jon Schlinkert**\n\n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n## License\n\nCopyright (c) 2015 Jon Schlinkert\nReleased under the MIT license.\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on May 07, 2015._","_attachments":{},"homepage":"https://github.com/jonschlinkert/array-every","bugs":{"url":"https://github.com/jonschlinkert/array-every/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/array-every/blob/master/LICENSE"}}