yiwn-compact

0.0.1 • Public • Published

compact

Create and return clone of provided object by excluding null and undefined properties.

Installation

Using component

$ component install yiwn/compact

Using npm for browserify

$ npm install yiwn-compact

Usage

Example:

var compact = require('yiwn-compact');
 
var obj = {
        a: 0,
        b: null,
        c: 'Shakira'
    };
 
var arr = [0, null, 'Shakira'];
 
compact(obj); // -> { a: 0, c: 'Sharkira' }
compact(obj); // -> [0, 'Shakira']

Test

Run tests with mocha

$ make test

License

The MIT License

Readme

Keywords

Package Sidebar

Install

npm i yiwn-compact

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • antaranian