1.0.2 • Published 2 years ago

@skorotkiewicz/rmatch v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

rMatch

A utility function inspired by Rust's match for pattern matching in JavaScript/TypeScript.

Installation

npm install @skorotkiewicz/rmatch
# or
yarn add @skorotkiewicz/rmatch

Usage

// const { match } = require("@skorotkiewicz/rmatch");
import { rmatch } from "@skorotkiewicz/rmatch";

// Example usage:
let age = 8;
rmatch(age, [
  [(val) => val >= 1 && val <= 18, () => console.log("Important Birthday")],
  [(val) => val === 21 || val === 50, () => console.log("Important Birthday")],
  [
    (val) => val >= 65 && val <= Number.MAX_SAFE_INTEGER,
    () => console.log("Important Birthday"),
  ],
  [() => true, () => console.log("Not an Important Birthday")], // Default
]);

API

rmatch(value, patterns)

  • value: The value to be matched against patterns.
  • patterns: An array of patterns, where each pattern is a tuple of two elements:
    • The first function checks if the value matches the pattern.
    • The second function executes when a match is found.

License

This project is licensed under the MIT License.

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago