remove-anything
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

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, empty objects, ...) 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 }

Remove multiple props

You can keep on passing parameters to remove additional props

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

// returns
// {}

Remove Empty Objects and Arrays

const payload = { a: 1, b: undefined, c: {}, d: [] }
removeProps(payload, {}, [])

// returns
// { a: 1, b: undefined }

Meet the family (more tiny utils with TS support)

Package Sidebar

Install

npm i remove-anything

Weekly Downloads

555

Version

1.0.5

License

MIT

Unpacked Size

8.71 kB

Total Files

7

Last publish

Collaborators

  • mesqueeb