0.1.0 • Published 6 years ago

remove-undefined v0.1.0

Weekly downloads
365
License
MIT
Repository
github
Last release
6 years ago

remove-undefined

Remove properties with the value undefined from an Object.

Installation

npm

$ npm install remove-undefined

yarn

$ yarn add remove-undefined

Usage

const removeUndefined = require('remove-undefined');

const ringDonut = { sugar: true, filling: undefined };

console.log(ringDonut); // -> { sugar: true, filling: undefined }
console.log(removeUndefined(ringDonut)); // -> { sugar: true }

License

MIT