deep-delete

2.1.1 • Public • Published

deep-delete

CircleCI Build Status Codecov Coverage Status Blazing Fast code style: prettier

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'
];

Package Sidebar

Install

npm i deep-delete

Weekly Downloads

362

Version

2.1.1

License

MIT

Unpacked Size

5.91 kB

Total Files

5

Last publish

Collaborators

  • lgraziani2712