Giter Club home page Giter Club logo

deep-cleaner's People

Contributors

andrewleedham avatar darksinge avatar dependabot[bot] avatar francoiscote avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

deep-cleaner's Issues

Does not preserve empty arrays when passing keys to delete.

var obj = { 
  a: null, 
  b: {}, 
  c: [], 
  d: {
    e: 'value'
  }, 
  e: 'value' 
}

cleaner(obj, 'e');
console.log(obj);

I would expect :

{ 
  a: null, 
  b: {}, 
  c: [], 
  d: {}
}

but I get:

{ 
a: null, 
b: {}, 
d: {}
}

I will submit a fix and updated tests in a PR

Convert to ES6 syntax

Converting this module to use ES6 syntax to keep up to date with current trends and styles of JavaScript.

cleanup after emptying an dirty object, non recursive nature?

clean=require('deep-cleaner')
obj={a:{dirty:'toclean'}}
clean(obj,'dirty')

expected: obj={}
actual: obj= {a:{}}


maybe it's linked to another issue
clean=require('deep-cleaner')
obj2 = { a : { b : { c: {}} } }
clean(obj2,'dirty')

expected: obj2={}
actual: obj= {a:{b:{}}}

Main cleaning method should not mutate passed in object

When cleaning an object, the passed in object should not be mutated.

const cleaner = require('deep-cleaner')
const obj = { dirty: 'value' }
const cleanObj = cleaner(obj, 'dirty')
assert.equal(obj.dirty, 'value')
assert.equal(cleanObj.dirty, undefined)

This new behavior will prevent side effects from occurring if the original object should not be modified.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.