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

empty-trim

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

empty-trim

Remove empty subobjects from your objects({})

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

empty-trim

A module to remove empty subobjects from given object recursively.

Installation

With npm

npm install empty-trim

Example

var trim = require('trim-empty');
var obj = {
  level1:{
    level2:{
      level3:{
        name: "Foo"
      },
      emptyOne: {
        inner: {}
      }
    },
    anotherLevel2: "bar"
  }
};

trim(obj); 
/*
Object now:
obj => {
  level1:{
    level2:{
      level3:{
        name: "Foo"
      }
    },
    anotherLevel2: "bar"
  }
}
*/

API

trim(object);

Removes all empty objects({}) recursively. If object becomes empty after its children are removed, it'll remove empty parent too.

Keywords

trim

FAQs

Package last updated on 24 Jun 2016

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