Last Updated: May 28, 2017
·
227
· Codi

Clean object's false properties in Javascript and return a new object without them

You can use this object-clean component to clean all Javascript object's false properties and return a new object without them.

Usage Example:

`new cleaned object

clean({ foo: null, bar: 'foo' }) // => { bar: 'foo' }`