0.0.7 • Published 8 years ago

lodash-forget v0.0.7

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

Lodash forget missing method

Lodash includes great has, get and set methods, but NOT one that will remove value with the same recursive way.

Introducing forget.

It supports same nested syntax as get, set and has in Lodash module and removes appropriate found value.

Installation

npm i lodash-forget --save

How to use

var forget = require('lodash-forget')
  , object = { 'a': { 'b': { 'c': 3, 'd': [1, 2] } } };
   
forget(object, 'a.b.c');
// => { 'a': { 'b': { 'd': [1, 2] } } };

forget(object, 'a.b.d[0]');
// => { 'a': { 'b': { 'd': [2] } } };

forget(object, 'a');
// => {};

//  Or use lodash mixin
_.mixin({ forget: forget });