{"_id":"omit-keys","_rev":"81731","name":"omit-keys","description":"Return a copy of an object without the given keys.","dist-tags":{"latest":"0.1.0"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"time":{"modified":"2021-06-03T10:26:04.000Z","created":"2014-09-22T22:43:05.459Z","0.1.0":"2014-09-22T22:43:05.459Z"},"users":{},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/omit-keys.git"},"versions":{"0.1.0":{"name":"omit-keys","description":"Return a copy of an object without the given keys.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/omit-keys","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/omit-keys.git"},"bugs":{"url":"https://github.com/jonschlinkert/omit-keys/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/omit-keys/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"verb-tag-jscomments":">= 0.2.0","verb":">= 0.2.6","mocha":"*"},"keywords":["JavaScript","Lo-Dash","Underscore","js","key","lodash","object","omit","property","remove","util","utilities","utils"],"dependencies":{"array-difference":"0.0.1","isobject":"^0.2.0"},"_id":"omit-keys@0.1.0","_shasum":"e14ec5ca09cd4ae07fc39e8ca35939738449bec8","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"e14ec5ca09cd4ae07fc39e8ca35939738449bec8","size":2904,"noattachment":false,"key":"/omit-keys/-/omit-keys-0.1.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/omit-keys/download/omit-keys-0.1.0.tgz"},"directories":{},"publish_time":1411425785459,"_cnpm_publish_time":1411425785459,"_hasShrinkwrap":false}},"readme":"# omit-keys [![NPM version](https://badge.fury.io/js/omit-keys.svg)](http://badge.fury.io/js/omit-keys)\n\n\n> Return a copy of an object without the given keys.\n\n## Install\n#### Install with [npm](npmjs.org):\n\n```bash\nnpm i omit-keys --save-dev\n```\n\n## Run tests\n\n```bash\nnpm test\n```\n\n## Usage\n\n```js\nvar omitKeys = require('omit-keys');\n```\n\nPass a string `key` to omit:\n\n```js\nomit({a: 'a', b: 'b', c: 'c'}, 'a')\n//=> { b: 'b', c: 'c' }\n```\n\nPass an array of `keys` to omit:\n\n```js\nomit({a: 'a', b: 'b', c: 'c'}, ['a', 'c'])\n//=> { b: 'b' }\n```\n\nReturns the object if no keys are passed:\n\n```js\nomit({a: 'a', b: 'b', c: 'c'})\n//=> {a: 'a', b: 'b', c: 'c'}\n```\n\nReturns an empty object if no value is passed.\n\n```js\nomit()\n//=> {}\n```\n\n## Author\n\n**Jon Schlinkert**\n \n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert) \n\n## License\nCopyright (c) 2014 Jon Schlinkert, contributors.  \nReleased under the MIT license\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on September 22, 2014._","_attachments":{},"homepage":"https://github.com/jonschlinkert/omit-keys","bugs":{"url":"https://github.com/jonschlinkert/omit-keys/issues"}}