1.0.1 • Published 9 years ago

this-drop v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

Coveralls – test coverage
Travis – build status
David – status of dependencies
Code style: airbnb

 

::drop()

Return the this object stripped of some properties.

 

const drop = require('this-drop');
const abc = {a: 1, b: 2, c: 3};

abc::drop(['a', 'c']);
//» {b: 2}

 

Installation

$ npm install this-drop

 

Usage

See the example above.

keys should be iterable – you’ll probably want to use an array here.

We don’t mutate the object. We make a shallow copy instead:

const xyz = {x: 1, y: '2', z: [3]};
const xz = xyz::drop(['y']);

xyz.z === xz.z;
//» true

Note that the example uses the ES 2016 function bind syntax. You can still use the library in any JS engine down to ES5 though:

drop.call(abc, ['a', 'c']);
//» {b: 2}

 

License

MIT © Studio B12 GmbH