weedout

Removes the value at the specified path, also traversing object arrays.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
weedout
101.0.16 years ago8 years agoMinified + gzip package size for weedout in KB

Readme

weedout Build Status NPM version js-standard-style
Removes the value at the specified path, also traversing object arrays.
npm i weedout --save

Usage

const weedout = require('weedout')

const foo = weedout({
  foo: {
    bar: 42
  }
}, 'foo.bar')

// foo = {}

const weedout = require('weedout')

const foo = weedout({
  foo: [{
    bar: 42
  }]
}, 'foo.bar')

// bar = {
//   foo: [{}]
// }

Contributing

I'd love for you to contribute and make weedout even better than it is today!
git clone https://github.com/Zertz/weedout.git
npm install
npm test