0.1.0 • Published 11 years ago
omit-keys v0.1.0
omit-keys 
Return a copy of an object without the given keys.
Install
Install with npm:
npm i omit-keys --save-devRun tests
npm testUsage
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.
0.1.0
11 years ago