deep-delete
v2.1.1
Published
Removes every matched key of every object recursively
Downloads
627
Maintainers
Readme
deep-delete
Removes every matched key for every object recursively. Can handle every type value. It's written in ES6++ and being used in our own codebase.
Since v2.0.0, the importing process is transparent. It works with CommonJS and ES6 modules without the need of importing specific files. See how this works: https://stackoverflow.com/a/42817320/2862917
Usage
For multiple keys
import deepDelete from 'deep-delete';
const data = [
{
moreData: {
key1ToDelete: 1,
},
key2ToDelete: 'Bye bye',
anotherKey: 2,
},
1,
null,
'hola'
];
const newData = deepDelete(['key1ToDelete', 'key2ToDelete'], data);
[
{
moreData: {
- key1ToDelete: 1,
},
- key2ToDelete: 'Bye bye',
anotherKey: 2,
},
1,
null,
'hola'
];
For one key
import deepDelete from 'deep-delete';
const data = [
{
moreData: {
keyToBeDeleted: 1,
},
keyToBeDeleted: 'Bye bye',
anotherKey: 2,
},
1,
null,
'hola'
];
const newData = deepDelete('keyToBeDeleted', data);
[
{
moreData: {
- keyToBeDeleted: 1,
},
- keyToBeDeleted: 'Bye bye',
anotherKey: 2,
},
1,
null,
'hola'
];