.verbrc.md 699 B

{%= name %} {%= badge("fury") %}

{%= description %}

Install

{%= include("install") %}

Run tests

npm test

Usage

var omitKeys = require('{%= name %}');

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

{%= include("author") %}

License

{%= copyright() %} {%= license() %}


{%= include("footer") %}