A utility function that returns a copy of the object given as first argument but without the keys provided as the other argument(s).
Install via npm:
% npm install except
Just require and call:
var except = require('except');
var myobj = { foo: true, bar: 1, baz: 'yes' };
except(myobj, 'foo') // => { bar: 1, baz: 'yes' }
except(myobj, 'foo', 'baz') // => { bar: 1 }
except(myobj, ['foo', 'bar']) // => { baz: 'yes' }
Here's a quick guide:
-
Fork the repo and
make install
. -
Run the tests. We only take pull requests with passing tests, and it's great to know that you have a clean slate:
make test
. -
Add a test for your change. Only refactoring and documentation changes require no new tests. If you are adding functionality or are fixing a bug, we need a test!
-
Make the test pass.
-
Push to your fork and submit a pull request.
Released under The MIT License.