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 🙏

© 2026 – Pkg Stats / Ryan Hefner

pattern-matching-js

v0.2.0

Published

A pattern matching library written in Typescript.

Downloads

19

Readme

pattern-matching-js

A pattern matching library written in Typescript.

Installing

Using npm:

$ npm install pattern-matching-js

Using yarn:

$ yarn add pattern-matching-js

Using unpkg CDN:

<script src="https://unpkg.com/pattern-matching-js/umd/pattern-matching.min.js"></script>

Usage

Basic

// A is a placeholder, which will be explained in the next section
const { when, A } = require("pattern-matching-js")

when(3)
    .case(1, () => console.log("no match"))
    .case(2, () => console.log("no match"))
    .case(A, ({ A }) => console.log(`match: ${A} = 3`))
    .case(3, () => console.log("ignored"))

Alternatively, you may omit .case.

// Alternative syntax
when(3)
    (1, () => console.log("no match"))
    (2, () => console.log("no match"))
    (A, ({ A }) => console.log(`match: ${A} = 3`))
    (3, () => console.log("ignored"))

The result of the callback function can be obtained by calling .end(). If there is no match, undefined will be returned.

const result = when(3)
    .case(A, ({ A }) => A)
    .end() // result = 3

const result = when(3)
    .case(1, () => 1)
    .case(2, () => 2)
    .end() // result = undefined

You may omit .end as well.

// Alternative syntax
const result = when(3)
    (1, () => 1)
    (2, () => 2)
    (A, ({ A }) => A)
    () // result = 3

If you did not provide a callback function, the identity function will be used.

const result = when(3)
    .case(1)
    .case(2)
    .case(A)
    .end() // result = { A: 3 }

Or if you provide a value instead of a function, that value will be returned.

const result = when(3)
    .case(1, "1")
    .case(2, "2")
    .case(A, "oops")
    .end() // result = "oops"

You may also use the match shorthand function if you only want to match one pattern.

match(value, pattern) is the same as when(value).case(pattern).end().

const { match } = require("pattern-matching-js")

const result = match(1, A) // result = { A: 1 }
const result = match(1, 2) // result = undefined

Named Placeholder

To use placeholders, import them first.

const { match, A, B } = require("pattern-matching-js")

You may import placeholders from A to Z and from a to z.

match(3, A) // { A: 3 }

You may add a type constraint to the placeholder by providing the constructor of the corresponding type. Note that Object will not match arrays.

match(3, A(String))          // undefined
match(3, A(Number))          // { A: 3 }

match([1, 2], A(Array))      // { A: [1, 2] }
match({ foo: 1 }, A(Object)) // { A: { foo: 1 } }
match([1, 2], A(Object))     // undefined

const date = new Date()
match(date, A(Date))         // { A: date }

You may also pass null and undefined.

match(undefined, A(undefined)) // { A: undefined }
match(null, A(null))           // { A: null }

You may add multiple types to a placeholder. A value must match one of the types provided.

match(3, A(Number)(String))   // { A: 3 }
match("a", A(Number)(String)) // { A: "a" }
match(true, A(Number)(String)) // undefined

All operations on placeholders are commutative. i.e. Using A(Number)(String) is the same as using A(String)(Number).

You may also add custom filter to the placeholder. Unlike types, a value must match all filters instead of any one of them.

match(3, A(Number).filter(x => x > 5))                    // undefined
match(3, A(Number).filter(x => x < 5).filter(x => x > 1)) // { A: 3 }

You may pass patterns to a placeholder.

match([1, 2], A([B, C])) // { A: [1, 2], B: 1, C: 2 }

You may also pass regular expression to a placeholder.

match("foo", A(/^w+$/))     // { A: "foo" }
match("foo bar", A(/^w+$/)) // undefined

You may use the same placeholder multiple times, however, it must match against the same value.

match([3, 3], [A, A]) // { A: 3 }
match([3, 4], [A, A]) // undefined

You may create custom placeholder as well

const { sym } = require("pattern-matching-js")

const MySymbol = sym("foo")

match(3, MySymbol(Number)) // { foo: 3 }

Unnamed placeholder

If you do not care about obtaining the matched value, you may import the _ placeholder.

const { match, _ } = require("pattern-matching-js")

match([1, 2], [_, _]) // {}

Unlike named placeholder, these can match different value.

match([3, 4], [_, _]) // {}
match([3, 4], [A, A]) // undefined

You may pass a type or a filter to the _ placeholder.

match(3, _(String))            // undefined
match(3, _(Number))            // {}
match(3, _.filter(x => x > 5)) // undefined

If you just want to check for a single type only, you may pass the constructor of the type without placeholders.

match(3, String)                // undefined
match([1, 2], [Number, Number]) // {}

You can pass regular expression without placeholders as well.

match("foo", /^w+$/)     // {}
match("foo bar", /^w+$/) // undefined

Objects

A match happens when the pattern is a subset of the value.

match({ foo: 1, bar: 2 }, { foo: A }) // { A: 1 }

Note that you cannot match against a key, only the value.

match({ foo: 1 }, { A: 1 }) // undefined

You may match nested objects.

match(
    { foo: { bar: 2 }, baz: { qux: 3 } },
    { foo: A, baz: { qux: B } }
) // { A: { bar: 2 }, B: 3 }

Array

Arrays are matched base on the values and the equality of length.

match([A, B], [1, 2])         // { A: 1, B: 2 }
match([A(Number), _], [1, 2]) // { A: 1 }
match([A, _], [1, 2, 3])      // undefined

Use the head/tail flag to specify remaining elements. Note that you cannot put both head and tail in the same array.

match([A, tail], [1, 2, 3])    // { A: 1 }
match([head, A], [1, 2, 3])    // { A: 3 }
match([head, tail], [1, 2, 3]) // undefined

You may pass head/tail to a placeholder to obtain a slice of the array.

match([A(head), 3], [1, 2, 3])          // { A: [1, 2] }
match([A(head), _, _, _], [1, 2, 3])    // { A: [] }
match([A(head), _, _, _, _], [1, 2, 3]) // undefined

If you pass a type to a placeholder with head/tail, it will match the type against each element in the slice.

match([A(head)(Number), 3], [1, 2, 3])           // { A: [1, 2] }
match([A(head)(Number), 3], [1, "2", 3])         // undefined
match([A(head)(Number)(String), 3], [1, "2", 3]) // { A: [1, "2"] }

Typescript

pattern-matching-js includes TypeScript definitions.

import { when, A, B, tail, _ } from 'pattern-matching-js'

when([1, 2, 3])
    .case([A, _, B], (res) => {
        /* typeof res = { A: any, B: any } */
    })
    .case([A, B(Number)(tail)], (res) => {
        /* typeof res = { A: any, B: number[] } */
    })
    .case([A(Number)(null), _, _], (res) => {
        /* typeof res = { A: number | null } */
    })