1.0.1 • Published 5 years ago

match-c v1.0.1

Weekly downloads
5
License
ISC
Repository
github
Last release
5 years ago

Match Case

Functional pattern matching for typescript

Installation

npm i match-c

Usage

import { match } from "match-c";

// Mathces the proper case
const five = match("Hello!!", 10)
    .c("Hola", 2)
    .c("Hello", 100)
    .c("Hello!!", 5)
    .result;

// Uses defualt when no match is found
const ten = match("Hello!!", 10)
    .c("Hola", 2)
    .c("Hello", 100)
    .c("Hello!!!!!", 5)
    .result;

Building and Testing

npm test # If no errors occur, the test suite passed