Return a copy of an object without the given keys.
Install
npm:
Install withnpm i omit-keys --save-dev
Run tests
npm test
Usage
var omitKeys = ;
Pass a string key
to omit:
//=> { b: 'b', c: 'c' }
Pass an array of keys
to omit:
//=> { b: 'b' }
Returns the object if no keys are passed:
//=> {a: 'a', b: 'b', c: 'c'}
Returns an empty object if no value is passed.
//=> {}
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.