lodash-forget

Lodash `forget` missing method

Usage no npm install needed!

<script type="module">
  import lodashForget from 'https://cdn.skypack.dev/lodash-forget';
</script>

README

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 });