From 48ad365baa15099b1404ef84a3415b6e8b3abc26 Mon Sep 17 00:00:00 2001 From: Gabriel Vergnaud <9265418+gvergnaud@users.noreply.github.com> Date: Tue, 30 Aug 2022 09:30:48 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2084e25..48613786 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Write **better** and **safer conditions**. Pattern matching lets you express com - **Expressive API**, with catch-all and type specific **wildcards**: [`P._`](#P_-wildcard), [`P.string`](#Pstring-wildcard), [`P.number`](#Pnumber-wildcard), etc. - Supports [**predicates**](#Pwhen-patterns), [**unions**](#Punion-patterns), [**intersections**](#Pintersection-patterns) and [**exclusion**](#Pnot-patterns) patterns for non-trivial cases. - Supports properties selection, via the [`P.select(name?)`](#Pselect-patterns) function. -- Tiny bundle footprint ([**only 1.6kB**](https://bundlephobia.com/package/ts-pattern)). +- Tiny bundle footprint ([**only 1.7kB**](https://bundlephobia.com/package/ts-pattern)). ## What is Pattern Matching?