object.omit NPM version NPM monthly downloads NPM total downloads Linux Build Status

Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.

Install

Install with npm:

sh $ npm install --save object.omit

Usage

js var omit = require('object.omit');

Pass a string key to omit:

js omit({a: 'a', b: 'b', c: 'c'}, 'a') //=> { b: 'b', c: 'c' }

Pass an array of keys to omit:

js omit({a: 'a', b: 'b', c: 'c'}, ['a', 'c']) //=> { b: 'b' }

Returns the object if no keys are passed:

js omit({a: 'a', b: 'b', c: 'c'}) //=> {a: 'a', b: 'b', c: 'c'}

Returns an empty object if no value is passed.

js omit() //=> {}

Filter function

An optional filter function may be passed as the last argument, with or without keys passed on the arguments:

filter on keys

js var res = omit({a: 'a', b: 'b', c: 'c'}, function (val, key) { return key === 'a'; }); //=> {a: 'a'}

filter on values

```js var fn = function() {}; var obj = {a: 'a', b: 'b', c: fn};

var res = omit(obj, ['a'], function (val, key) { return typeof val !== 'function'; }); //=> {b: 'b'} ```

About

Related projects

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)

To generate the readme and API documentation with verb:

sh $ npm install -g verb verb-generate-readme && verb

Running tests

Install dev dependencies:

sh $ npm install -d && npm test

Author

Jon Schlinkert

License

Copyright © 2016, Jon Schlinkert. Released under the MIT license.


This file was generated by verb-generate-readme, v0.2.0, on October 27, 2016.