omit-keys
v0.1.0
Published
Return a copy of an object without the given keys.
Downloads
22,142
Maintainers
Readme
omit-keys
Return a copy of an object without the given keys.
Install
Install with npm:
npm i omit-keys --save-dev
Run tests
npm test
Usage
var omitKeys = require('omit-keys');
Pass a string key
to omit:
omit({a: 'a', b: 'b', c: 'c'}, 'a')
//=> { b: 'b', c: 'c' }
Pass an array of keys
to omit:
omit({a: 'a', b: 'b', c: 'c'}, ['a', 'c'])
//=> { b: 'b' }
Returns the object if no keys are passed:
omit({a: 'a', b: 'b', c: 'c'})
//=> {a: 'a', b: 'b', c: 'c'}
Returns an empty object if no value is passed.
omit()
//=> {}
Author
Jon Schlinkert
License
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
This file was generated by verb-cli on September 22, 2014.