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

comparison-fns

v1.2.1

Published

Composable comparison functions for sorting

Downloads

253

Readme

comparison-fns

Composable comparison functions for use in sorting.

Installation

$ npm install comparison-fns

Usage

import {
  compareString,
  mapComparer,
  orderComparer,
  chainComparers,
} from "comparison-fns";

// Basic alphabetical sorting.
["b", "c", "a"].sort(compareString);
//=> ["a", "b", "c"]

// Sorting people by name.
[{ name: "Bob" }, { name: "Charlie" }, { name: "Alice" }].sort(
  mapComparer(compareString, (person) => name)
);
//=> [{ name: "Alice" }, { name: "Bob" }, { name: "Charlie" }]

// Sorting priority with pre-defined ordering.
["medium", "high", "low"].sort(orderComparer(["high", "medium", "low"]));
//=> ["high", "medium", "low"]

// Sorting by category and title.
const compareGenre = orderComparer(["horror", "fantasy", "mystery"]);
const compareBook = chainComparers(
  mapComparer(compareGenre, (book) => book.genre),
  mapComparer(compareString, (book) => book.title)
);
[
  { title: "Frankenstein", genre: "horror" },
  { title: "Dune", genre: "fantasy" },
  { title: "Dracula", genre: "horror" },
].sort(compareBook);
//=> [
//     { title: "Dracula", genre: "horror" },
//     { title: "Frankenstein", genre: "horror" },
//     { title: "Dune", genre: "fantasy" }
//   ]

compareEqual

Considers all values equal, thus this does not change the order.

[1, 2, 3].sort(compareEqual); // [1, 2, 3]

conditionFirstComparer

Order values that pass a condition before anything else.

// The following will order NaN values first, followed by the remaining values sorted in ascending order.
// NaN values are considered equal to eachother, so `compareEqual` is used for them.
[3, 1, NaN, 2].sort(conditionFirstComparer(isNaN, compareEqual, compareNumber)); // [NaN, 1, 2, 3]

conditionTypeFirstComparer

Order values that pass a type guard before anything else.

const comparer: Comparer<string | null> = conditionTypeFirstComparer(
  (value: string | null): value is string => value !== null,
  compareString, // This is of type Comparer<string>
  compareEqual
);
["a", null, "b"].sort(comparer); // ["a", "b", null]

constFirstComparer

Order a specific constant value before anything else.

[3, 5, 2, 1, 4].sort(constFirstComparer(3)); // [3, 1, 2, 5, 4]

nullableFirstComparer

Order null and undefined values first and use comparer for other cases.

[3, undefined, null, 2, undefined, 1].sort(
  nullableFirstComparer(compareNumber)
); // [undefined, null, undefined, 1, 2, 3]

nullableLastComparer

Order null and undefined values last and use comparer for other cases.

[3, undefined, null, 2, undefined, 1].sort(nullableLastComparer(compareNumber)); // [3, 2, 1, undefined, null, undefined]

compareNullableFirst

Order null and undefined values before anything else.

[3, undefined, null, 2, undefined, 1].sort(compareNullableFirst); // [undefined, null, undefined, 3, 2, 1]

compareNanFirst

Order NaN values before anything else.

[3, 1, NaN, 2].sort(compareNanFirst); // [NaN, 3, 1, 2]

comparePositiveInfinityFirst

Order infinity values before anything else.

[3, 1, Infinity, 2].sort(comparePositiveInfinityFirst); // [Infinity, 3, 1, 2]

compareNegativeInfinityFirst

Order negative infinity values before anything else.

[3, 1, -Infinity, 2].sort(compareNegativeInfinityFirst); // [-Infinity, 3, 1, 2]

compareFiniteNumber

Compare finite numbers. NaN, infinity, and negative infinity are considered equal.

[3, 1, NaN, 2].sort(compareFiniteNumber); // [1, 2, 3, NaN]

compareNumber

Compare numbers from low to high.

[3, Infinity, 1, NaN, 2, -Infinity].sort(compareNumber); // [NaN, -Infinity, 1, 2, 3, Infinity]

compareString

Order strings using the current locale.

["a", "b", "c"].sort(compareString); // ["a", "b", "c"]

collatorComparer

Order strings using a specific collator to control language-specific comparison rules.

const collator = new Intl.Collator("de", { caseFirst: "upper" });
["z", "a", "Z", "ä"].sort(collatorComparer(collator)); // ["a", "ä", "Z", "z"]

compareDate

Order older dates before newer dates.

[new Date(2024, 2, 1), new Date(2024, 1, 1)].sort(compareDate); // [new Date(2024, 1, 1), new Date(2024, 2, 1)]

compareBoolean

Compare booleans. True is ordered before false.

[false, true, false].sort(compareBoolean); // [true, false, false]

invertComparer

Invert the order of a comparer.

[1, 2, 3].sort(invertComparer(compareNumber)); // [3, 2, 1]

chainComparers

Combine multiple comparers into a single comparer.

[
  {
    name: "a",
    country: "US",
  },
  {
    name: "c",
    country: "DE",
  },
  {
    name: "b",
    country: "DE",
  },
].sort(
  chainComparers(
    mapComparer(compareString, (item) => item.country),
    mapComparer(compareString, (item) => item.name)
  )
);
// [{name: "b", country: "DE"}, {name: "c", country: "DE"}, {name: "a", country: "US"}]

orderComparer

Compare strings based on a predefined order.

const preferredOrder = ["high", "medium", "low"];
["low", "high", "medium", "high"].sort(orderComparer(preferredOrder)); // ["high", "high", "medium", "low"]

mapComparer

Calls mapper for both values to be compared, calls comparer on the resulting values.

[{ name: "Bob" }, { name: "Charlie" }, { name: "Alice" }].sort(
  mapComparer(compareString, (item) => item.name)
);
// [{ name: "Alice" }, { name: "Bob" }, { name: "Charlie" }]

groupComparer

Compares values based on groups.

[1, 2, 3, 4, 5, 6].sort(
  groupComparer(
    {
      even: compareNumber,
      odd: invertComparer(compareNumber),
    },
    (value) => (value % 2 ? "odd" : "even")
  )
);
// [2, 4, 6, 5, 3, 1]

arrayComparer

Compares arrays using a comparer for its individual items.

const versions = ["1.2.3", "1.2", "1.2.1", "1"];
const compare = mapCompare(arrayComparer(compareNumber), (version) =>
  version.split(".").map(parseInt)
);
versions.sort(compare);
// => ["1", "1.2", "1.2.1", "1.2.3"]

compareNumberOrString

Order numbers as well as strings using compareNumber and compareString.

["b", 1, "a", 3].sort(compareNumberOrString); // [1, 3, "a", "b"]

compareStringNatural

Compare strings using a natural order.

const strings = ["b1", "a1", "a10", "a2", "a20"];
strings.sort(compareStringNatural);
// => ["a1", "a2", "a10", "a20", "b1"]