remove-anything

Remove any prop (eg. `undefined`) from an object

Usage no npm install needed!

<script type="module">
  import removeAnything from 'https://cdn.skypack.dev/remove-anything';
</script>

README

Remove Anything ✂️

Total Downloads Latest Stable Version

npm i remove-anything

Removes props (eg. undefined) from an object

An optimised way to remove any prop (eg. undefined) from an object. A small and simple integration.

Usage

import { removeProp } from 'remove-anything'

const payload = { a: 1, b: undefined }
const noUndefined = removeProp(payload, undefined)

noUndefined // { a: 1 }

const payload = { a: 1, b: undefined }
const no1 = removeProp(payload, 1)

no1 // { b: undefined }

Meet the family