npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@antoniovdlc/filter

v1.0.2

Published

Custom filter functions for arrays

Downloads

9

Readme

filter

version issues downloads license

Custom filter functions for arrays.

Installation

This package is distributed via npm:

npm install @antoniovdlc/filter

Motivation

Filtering arrays is a common operation in JavaScript, so this library provides some common custom compare functions to have a more declarative way of filtering arrays.

Usage

You can use this library either as an ES module or a CommonJS package:

import { hasValue, equal, match, lesserThan } from "@antoniovdlc/filter";

- or -

const { hasValue, equal, match, lesserThan } = require("@antoniovdlc/filter");

Examples

All filter functions can be used out of the box for filtering as follows:

import { lesserThan } from "@antoniovdlc/filter";

const arr = [1, 2, 2, 23, 30, 4];
arr.filter(lesserThan(5)); // [1, 2, 2, 4]

You can revert every filtering functions by appending .not:

import { lesserThan } from "@antoniovdlc/filter";

const arr = [1, 2, 2, 23, 30, 4];
arr.filter(lesserThan(5).not); // [23, 30]

Finally, all filter functions provide a .on("key") function which allows to sort arrays of objects by nested fields:

const arr = [
  { name: "Bob", age: 23 },
  { name: "Alice", age: 32 },
  { name: "Tom", age: 60 },
  { name: "Candice", age: 45 },
];
arr.filter(greaterThanOrEqual(40).on("age"));
/*
[
  { name: "Tom", age: 60 },
  { name: "Candice", age: 45 },
]
*/

The same .not function can be used for filtering arrays of objects:

const arr = [
  { name: "Bob", age: 23 },
  { name: "Alice", age: 32 },
  { name: "Tom", age: 60 },
  { name: "Candice", age: 45 },
];
arr.filter(greaterThanOrEqual(40).on("age").not);
/*
[
  { name: "Bob", age: 23 },
  { name: "Alice", age: 32 },
]
*/

Filter functions

Here is a list of provided compare functions:

notNull

Removes null values from an array.

hasValue

Removes falsy values from an array (except 0).

equal(value)

Keeps all values that are strictly equal to value. Uses lodash.isequal

lesserThan(value) / lesserThanOrEqual(value) / greaterThan(value) / greaterThanOrEqual(value)

Filters on numerical or date values applying the appropriate comparaison function.

match(pattern)

Keeps all values that match the provided pattern.

Creating custom filtering functions

You can create your own filtering functions by using the createFilterFunction() function:

import { createFilterFunction } from "@antoniovdlc/filter";

const contains = createFilterFunction(
  (item, value) => Array.isArray(item) && item.includes(value)
);

const arr = [
  { name: "Bob", age: 23, values: [1, 2, 5] },
  { name: "Alice", age: 32, values: [4, 3] },
  { name: "Tom", age: 60, values: [8] },
  { name: "Candice", age: 45, values: [1, 2, 4, 8] },
];
arr.filter(contains(8).on("values"));
/*
[
  { name: "Tom", age: 60, values: [8] },
  { name: "Candice", age: 45, values: [1, 2, 4, 8] },
]
*/
import { createFilterFunction } from "@antoniovdlc/filter";

const isBob = createFilterFunction((item, value) => item === value)("Bob");

const arr = ["Bob", "Alice", "Tom", "Candice"];
arr.filter(isBob); // ["Bob"]
arr.filter(isBob.not); // ["Alice", "Tom", "Candice"]

Out of the box, your custom filtering functions have the same attributes and methods as the default filtering functions (such as .not or .on())!

Combining filtering functions

You can also combine multiple filtering functions.

Let's say that for example, you need to filter an array of users first by name matching a pattern, and then by age lower than 40 and higher than 30, or age equal to 45. You can achieve that as follows:

import { combine } from "@antoniovdlc/filter";

const arr = [
  { name: "Bob", age: 23 },
  { name: "Alice", age: 32 },
  { name: "Tom", age: 60 },
  { name: "Candice", age: 45 },
  { name: "Alice", age: 28 },
];
arr.filter(
  combine({
    operator: "and",
    filters: [
      match(/ice$/).on("name"),
      {
        operator: "or",
        filters: [
          {
            operator: "and",
            filters: [lesserThan(40).on("age"), greaterThan(30).on("age")],
          },
          equal(45).on("age"),
        ],
      },
    ],
  })
);
/*
[
  { name: "Alice", age: 32 },
  { name: "Candice", age: 45 },
]
*/

License

MIT