remove-undefined
v0.1.0
Published
Remove properties with the value `undefined`.
Downloads
126
Readme
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