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

https://github.com/IAmAnubhavSaini/find-this-value

Find a value in a given object with programmable matching logic - node module
https://github.com/IAmAnubhavSaini/find-this-value

Last synced: about 1 month ago
JSON representation

Find a value in a given object with programmable matching logic - node module

Awesome Lists containing this project

README

        

# find-this-value

Find a value in a given object with programmable matching logic - node module

## Usage

```javascript

const ftv = require('find-this-value')
ftv({a: 'b'}, 'b', (a, b) => a === b) // true
ftv({a: 'b'}, 'a', (a, b) => a === b) // false

```

## License

MIT © 2018 Git Faf