Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ndhoule/some

Check if a predicate function returns true for any value in a collection.
https://github.com/ndhoule/some

Last synced: 13 days ago
JSON representation

Check if a predicate function returns true for any value in a collection.

Awesome Lists containing this project

README

        

# some [![CI][ci-badge]][ci-link]

Check if a `predicate` function returns true for any value in a `collection`.

## Installation

```sh
$ component install ndhoule/some
$ npm install @ndhoule/some
```

## API

### `some(predicate : Function, collection : Array|Object|String)`

```js
var isEven = function(num) { return num % 2 === 0; };

some(isEven, [1, 2, 3]); // => true
some(isEven, [1, 3, 5]); // => false
some(isEven, [2, 4, 6]); // => true
```

## License

Released under the [MIT license](LICENSE.md).

[ci-link]: https://travis-ci.org/ndhoule/some
[ci-badge]: https://travis-ci.org/ndhoule/some.svg?branch=master