Repository URL to install this package:
|
Version:
1.8.0-17108 ▾
|
| .. |
| index.js |
| package.json |
| LICENSE |
| README.md |
Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.
$ npm i object.omit --save-dev
var omit = require('object.omit');
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() //=> {}
An optional filter function may be passed as the last argument, with or without keys passed on the arguments:
filter on keys
var res = omit({a: 'a', b: 'b', c: 'c'}, function (val, key) { return key === 'a'; }); //=> {a: 'a'}
filter on values
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'}
pick from… moreextend but only copies missing properties/values to the target object.Install dev dependencies:
$ npm i -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Jon Schlinkert
Copyright © 2014-2015 Jon Schlinkert Released under the MIT license.
This file was generated by verb-cli on July 22, 2015.