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 🙏

© 2025 – Pkg Stats / Ryan Hefner

inlineswitch

v1.0.2

Published

A flexible inline switch statement with pattern matching for TypeScript/JavaScript

Readme

Inline Switch

A flexible inline switch statement with pattern matching for TypeScript/JavaScript.

Installation

npm install inlineswitch

Features

  • Match against exact values, arrays of values, or predicate functions
  • Type-safe with full TypeScript support
  • More concise and readable than long if-else chains
  • Supports default handlers for non-matching cases
  • Checks for duplicate case values
  • Tiny library with zero dependencies

Usage

Basic Usage

import { inlineSwitch } from "inlineswitch";

const result = inlineSwitch(
  value,
  [
    [5, (v) => `Exact match: ${v}`],
    [[1, 2, 3], (v) => `Array match: ${v}`],
    [(v) => v > 10, (v) => `Predicate match: ${v}`],
  ],
  (v) => `Default: ${v}` // Optional default handler
);

Different Types of Patterns

// Exact value matching
const dayName = inlineSwitch(
  dayNumber,
  [
    [0, () => "Sunday"],
    [1, () => "Monday"],
    [2, () => "Tuesday"],
    [3, () => "Wednesday"],
    [4, () => "Thursday"],
    [5, () => "Friday"],
    [6, () => "Saturday"],
  ],
  () => "Invalid day"
);

// Array matching
const fruitCategory = inlineSwitch(
  fruit,
  [
    [["apple", "pear"], () => "pome"],
    [["peach", "plum", "cherry"], () => "drupe"],
    [["grape", "blueberry"], () => "berry"],
  ],
  () => "other"
);

// Predicate function matching
const sizeCategory = inlineSwitch(length, [
  [(v) => v < 10, () => "small"],
  [(v) => v >= 10 && v < 100, () => "medium"],
  [(v) => v >= 100, () => "large"],
]);

Shorthand for Simple Cases

import { switchValue } from "inlineswitch";

// Simpler syntax for value-only checks
const result = switchValue(
  color,
  ["red", () => "#FF0000"],
  ["green", () => "#00FF00"],
  ["blue", () => "#0000FF"]
);

API

inlineSwitch<T, R>(value: T, cases: SwitchCase<T, R>[], defaultHandler?: CaseHandler<T, R>): R | undefined

The main function that implements pattern matching.

  • value: The value to match against case patterns
  • cases: An array of case patterns and their handlers
  • defaultHandler: Optional default handler if no cases match
  • Returns the result of the matched handler or the default handler, or undefined

switchValue<T, R>(value: T, ...cases: Array<[T | T[], CaseHandler<T, R>]>): R | undefined

A shorthand version for simple value-only checks.

Types

type CasePattern<T> = T | T[] | ((value: T) => boolean);
type CaseHandler<T, R> = (value: T) => R;
type SwitchCase<T, R> = [CasePattern<T>, CaseHandler<T, R>];

Error Handling

The library throws a DuplicateCaseError when duplicate case values are detected.

License

MIT