has-keys 
Returns true if the given object has all of the specified keys.
Install
Install with npm
$ npm i has-keys --save
Usage
var hasKeys = require('has-keys');
var obj = {a: 'a', b: 'b', c: 'c'};
hasKeys(obj, 'a');
hasKeys(obj, ['a', 'b']);
hasKeys(obj, ['a', 'b', 'c']);
hasKeys(obj, ['a', 'b', 'c', 'd']);
Related projects
- get-value: Use property paths (
a.b.c) to get a nested value from an object.
- has-any: Returns true if an object has any of the specified keys.
- has-value: Returns true if a value exists, false if empty. Works with deeply nested values using… more
- has-any-deep: Return true if
key exists deeply on the given object.
- has-own-deep: Returns true if an object has an own, nested property using dot notation paths ('a.b.c').
Running tests
Install dev dependencies:
$ npm i -d && npm test
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
Jon Schlinkert
License
Copyright © 2015 Jon Schlinkert
Released under the MIT license.
This file was generated by verb-cli on June 02, 2015.