Skip to content

Commit

Permalink
[readme] remove redundant TOC
Browse files Browse the repository at this point in the history
GitHub automatically makes a TOC for us - see the hamburger button in the upper right corner
  • Loading branch information
ljharb committed Mar 28, 2024
1 parent 188bd2e commit 979a83c
Showing 1 changed file with 0 additions and 58 deletions.
58 changes: 0 additions & 58 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,64 +19,6 @@
- Ross Kirsling (Sony, [@rkirsling](https://twitter.com/rkirsling))
- Tab Atkins-Bittner (Google, [@tabatkins](https://twitter.com/tabatkins))

## Table of Contents
1. [ECMAScript Pattern Matching](#ecmascript-pattern-matching)
1. [[Status](https://tc39.github.io/process-document/)](#statushttpstc39githubioprocess-document)
2. [Table of Contents](#table-of-contents)
2. [Introduction](#introduction)
1. [Problem](#problem)
1. [Current Approaches](#current-approaches)
2. [Priorities for a solution](#priorities-for-a-solution)
1. [_Pattern_ matching](#pattern-matching)
2. [Subsumption of `switch`](#subsumption-of-switch)
3. [Be better than `switch`](#be-better-than-switch)
4. [Expression semantics](#expression-semantics)
5. [Exhaustiveness and ordering](#exhaustiveness-and-ordering)
6. [User extensibility](#user-extensibility)
3. [Prior Art](#prior-art)
1. [Userland matching](#userland-matching)
3. [Specification](#specification)
4. [Matcher Patterns](#matcher-patterns)
1. [Value Matchers](#value-matchers)
1. [Primitive Patterns](#primitive-patterns)
2. [Variable Patterns](#variable-patterns)
3. [Custom Matchers](#custom-matchers)
4. [Regex Patterns](#regex-patterns)
5. [Binding Patterns](#binding-patterns)
6. [Void Patterns](#void-patterns)
2. [Structure Patterns](#structure-patterns)
1. [Array Patterns](#array-patterns)
2. [Object Patterns](#object-patterns)
3. [Extractor Patterns](#extractor-patterns)
4. [Regex Extractor Patterns](#regex-extractor-patterns)
3. [Combinator Patterns](#combinator-patterns)
1. [And Patterns](#and-patterns)
2. [Or Patterns](#or-patterns)
3. [Not Patterns](#not-patterns)
4. [Combining Combinator Patterns](#combining-combinator-patterns)
4. [Guard Patterns](#guard-patterns)
5. [`match` expression](#match-expression)
1. [Bindings](#bindings)
2. [Examples](#examples)
3. [](#)
4. [Statement Vs Expression](#statement-vs-expression)
6. [`is` operator](#is-operator)
1. [Bindings](#bindings)
7. [Motivating examples](#motivating-examples)
1. [](#)
2. [](#)
8. [Possible future enhancements](#possible-future-enhancements)
1. [`async match`](#async-match)
2. [Default Values](#default-values)
3. [Destructuring enhancements](#destructuring-enhancements)
4. [Integration with `catch`](#integration-with-catch)
5. [Chaining guards](#chaining-guards)
6. [Implementations](#implementations)





# Introduction

## Problem
Expand Down

0 comments on commit 979a83c

Please sign in to comment.