key-difference
v1.0.0
Published
Create an array of the keys present in the first input object but not additional ones
Downloads
73
Readme
key-difference
Create an array of the keys present in the first input object but not additional ones
Install
$ npm install --save key-difference
Usage
var keyDifference = require('key-difference')
keyDifference({a: 1, b: 2, c: 3}, {a: 1}, {b: 2})
//=> ['c']
API
keyDifference(input, others...)
-> array[string]
input
Required
Type: object
The source object.
others
Required
Type: object
A variadic set of objects.
License
MIT © Ben Drucker