$ gnpm install in-array
Return true if a value exists in an array. Faster than using indexOf and won't blow up on null values.
Install with npm:
$ npm install in-array --save
var inArray = require('in-array');
console.log(inArray(['a', 'b', 'c'], 'a'));
//=> true
console.log(inArray(null, 'a'));
//=> false
console.log(inArray(null));
//=> false
You might also be interested in these projects:
Object
constructor. | homepagePull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Generate readme and API documentation with verb:
$ npm install verb && npm run docs
Or, if verb is installed globally:
$ verb
Install dev dependencies:
$ npm install -d && npm test
Jon Schlinkert
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb, v, on March 27, 2016.
Copyright 2013 - present © cnpmjs.org | Home |