a-contains
Returns true if the value is present in the list
Install
$ npm install --save a-contains
Example
var contains = ; var arr = 0: 'a' 1: 'b' 2: 'c' ;console;//=> true var arr = 1 2 3 4 5;console; var arr = 1 2 3 4 5;console;//=> true
require('a-contains')(object, value, [fromIndex])
Arguments:
object
: It can be array for plain key/value objectvalue
: The item that you want to find in objectfromIndex
: fromIndex to start your search at a given index
Returns: Returns true if the value is present in the list
License
© 2016 vikram. MIT License