Giter VIP home page Giter VIP logo

filter-empty's Introduction

filter-empty

Filter empty values from objects and/or arrays.

NPM Version NPM Downloads codecov.io release master BundleSize Dependencies DevDependencies PeerDependencies Patreon


Getting started

npm install -S filter-empty

Once installed, import and start filtering objects.

import filterEmpty from 'filter-empty';

const objToFilter = {
  level1: {
    level2: {
      level3: {
        key1: 'This value is ok',
        key2: null,
        key3: ['', null, 'This is also ok'],
      },
    },
  },
};

const filtered = filterEmpty(objToFilter);

// result
// {
//   level1: {
//     level2: {
//       level3: {
//         key1: 'This value is ok'
//         key3: ['This is also ok']
//       }
//     }
//   }
// }

Examples

[Codesandbox](https://codesandbox.io/s/filter-empty-mtlwh?fontsize=14)

Codesandbox Typescript

Motivation

Working with graphql and its great type safty results in null values for some props. Sometime in consuming these props on the client it's better to remove the empty props rather than implementing conditionals.

Features

  • Filters empty values from objects and arrays.
  • Creates new mutation free objects
  • Recurses nested props.
  • BundleSize BundleSize.

Benefits

  • New objects free of null, undefined, empty arrays, and empty strings.
  • Removal of empty nested props.
  • Light, fast, and dependency free lib.

Contributing

  1. Fork the repository.

  2. Clone the fork to your local machine and add upstream remote:

git clone https://github.com/<your username>/filter-empty.git
cd filter-empty
git remote add upstream https://github.com/PaulSavignano/filter-empty.git
  1. Synchronize your local next branch with the upstream one:
git checkout next
git pull upstream next
  1. Install the dependencies:
npm install
  1. Create a new branch:
git checkout -b my-branch
  1. Make changes, commit and push to your fork:
git push -u origin HEAD
  1. Go to the repository and make a Pull Request.

filter-empty's People

Contributors

paulsavignano avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

filter-empty's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.