1.0.0 • Published 9 years ago

key-difference v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

key-difference Build Status

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