@v57/strip
v1.0.5
Published
Removes undefined values from object
Downloads
18
Readme
Installation
npm install --save @v57/stripUsage
const strip = require('@v57/strip')
let a
let b = 0
let c = '1'
console.log(strip({ a, b, c }))
// prints { b: 0, c: '1' }