remove-undefined

0.1.0 • Public • Published

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

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i remove-undefined

      Weekly Downloads

      58

      Version

      0.1.0

      License

      MIT

      Last publish

      Collaborators

      • gawhelan