Mirror: The magical sticky regex-based parser generator 🧙
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix typo in README code example

+1 -1
+1 -1
README.md
··· 323 323 import match, { parse } from 'reghex'; 324 324 325 325 const name = match('name')((x) => { 326 - return x !== 'tim' ? x : undefined; 326 + return x[0] !== 'tim' ? x : undefined; 327 327 })` 328 328 ${/\w+/} 329 329 `;