New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@tuplo/cleanobj

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tuplo/cleanobj

cleanobj Tiny (505B) removal of object properties that are undefined, functions, empty arrays or empty strings. <p a

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

Logo

cleanobj

Tiny (505B) removal of object properties that are undefined, functions, empty arrays or empty strings.

Install

$ npm install @tuplo/cleanobj

# or with yarn
$ yarn add @tuplo/cleanobj

Usage

import clean from '@tuplo/cleanobj';

const obj = {
  p1: ' ',
  p2: ['', '', '', ['']],
  p3: ' four ',
  descriptions: ['SAMPLE SET', '', '', { foo: '', bar: null }],
  badNews: [null, '', '', 'SAMPLE'],
  p5: ['f ', ' ', ' do'],
  p6: { thing: 'one', zap: null, un: undefined },
  func: (foo) => foo,
  width: '',
  height: 0,
  finish: false,
  start: true,
  'alice.bob@charlie.com': 'Dean Edward',
};

const after = clean(obj);
// {
//   p3: 'four',
//   descriptions: [ 'SAMPLE SET', { bar: null } ],
//   badNews: [ null, 'SAMPLE' ],
//   p5: [ 'f', 'do' ],
//   p6: { thing: 'one', zap: null },
//   height: 0,
//   finish: false,
//   start: true,
//   'alice.bob@charlie.com': 'Dean Edward',
// }

Options

ignore

(key: string, value: unknown) => boolean

A function that if it returns true for a given property, cleanobj will not clean that property.

const obj = {
  p1: undefined,
  p2: [],
  p3: undefined,
};

function ignore(key: string, value: unknown) {
  return key === 'p1' || (value as unknown[]).length === 0;
}

const result = clean(obj, { ignore });
// {
//   p1: undefined,
//   p2: []
// }

License

MIT

Keywords

utility

FAQs

Package last updated on 11 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts