Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndhoule/every
Check if a predicate function returns true for all values in a collection.
https://github.com/ndhoule/every
Last synced: 13 days ago
JSON representation
Check if a predicate function returns true for all values in a collection.
- Host: GitHub
- URL: https://github.com/ndhoule/every
- Owner: ndhoule
- License: mit
- Created: 2015-06-22T20:49:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-02T20:27:39.000Z (over 8 years ago)
- Last Synced: 2024-10-12T14:56:03.053Z (about 1 month ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- License: LICENSE.md
Awesome Lists containing this project
README
# every [![CI][ci-badge]][ci-link]
Check if a `predicate` function returns true for all values in a `collection`.
## Installation
```sh
$ component install ndhoule/every
$ npm install @ndhoule/every
```## API
### `every(predicate : Function, collection : Array|Object|String)`
```js
var isEven = function(num) { return num % 2 === 0; };every(isEven, []); // => false
every(isEven, [1, 2]); // => false
every(isEven, [2, 4, 6]); // => true
```## License
Released under the [MIT license](LICENSE.md).
[ci-link]: https://travis-ci.org/ndhoule/every
[ci-badge]: https://travis-ci.org/ndhoule/every.svg?branch=master