Giter VIP home page Giter VIP logo

objectsfilter's Introduction

object's filter

Basically it's just like Array.prototype.filter but more of Object.filter.

install

npm i objectsfilter

Syntax:

objectsFilter:

It's an Objects filter, let you filter objects on certain conditions with a flexibility.

const result = objectsFilter(object, callback);

Arguments:

  • object
    • Any object that you may think of.
  • callback
    • a testing function to test whether a certain condition is true or false, it has four parameters.
      • currentItem each looped value in the passed object
      • currentKey each looped key in the passed object
      • resultObject the collected result till the current time of the object
      • originObject the original object as passed

Returns:

  • a new object with the filtered results, or empty object if none-found.

usage:

const { objectsFilter } = require('objectsfilter');

const catsObject = {
  Oliver: 'Meow',
  Leo: 'Meow',
  Milo: '',
  Charlie: undefined,
  Simba: 'Meow',
  Max: 'Meow',
  Jack: false,
};

function checkCatsAvailability(cats) {
  return objectsFilter(cats, cat => !!cat);
}

const cats = checkCatsAvailability(catsObject);

function availableSaysMeow(cats) {
  for (const cat of cats) {
    console.log(`${cat} says Meow`);
  }
}

availableSaysMeow();
// Oliver says Meow
// Leo says Meow
// Charlie says Meow
// Simba says Meow
// Max says Meow

objectsForEach:

It's an Objects forEach method, let you loop through objects on certain with ease, you don't have to worry about forin any more.

objectsForEach(object, callback);

Arguments:

  • object
    • Any object that you may think of.
  • callback
    • currentItem each looped value in the passed object
    • currentKey each looped key in the passed object
    • originObject the original object as passed

Returns:

  • void.

usage:

const { objectsForEach } = require('objectsfilter');

const catsObject = {
  Oliver: 'Meow',
  Leo: 'Meow',
  Milo: '',
  Charlie: undefined,
  Simba: 'Meow',
  Max: 'Meow',
  Jack: false,
};

objectsForEach(catsObject, (catValue, catName) => {
  if (catValue) {
    console.log(`${catName} says Meow`);
  } else {
    console.log(`${catName} isn't here today`);
  }
});

// Oliver says Meow
// Leo says Meow
// Milo isn't here today
// Charlie isn't here today
// Simba says Meow
// Max says Meow
// Jack isn't here today

you get the idea, Or you can go real wild with it...

Made for easy objects filtering or looping.

For some strange reason you may need this, trust me ;)

Easy to use, maintain, and contain some vitamin Cat as well.


๐Ÿ“‘ License

This software is licensed under the GNU GENERAL PUBLIC LICENSE ยฉ

objectsfilter's People

Watchers

James Cloos avatar M. J. avatar

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.