Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
marihachi committed Aug 23, 2023
1 parent 37f4354 commit 87c603a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A refined, expressive parser combinator library.
[Try it out!](https://npm.runkit.com/terrario)

- 📍 Minimal yet powerful APIs
- 🖨 Scannerless parsing
- 🖨 Supports scannerless parsing and tokens parsing
- ⚙ Supports conditional control by state
- ✨ Zero dependency

Expand All @@ -27,9 +27,9 @@ import * as T from 'terrario';

// build a parser
const parser = T.alt([
T.str('hello'),
T.str('world'),
T.str(' '),
T.token('hello'),
T.token('world'),
T.token(' '),
]).many();

// parse the input string
Expand Down

0 comments on commit 87c603a

Please sign in to comment.