Package Exports
- omit-keys
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (omit-keys) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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.