Mirror: The magical sticky regex-based parser generator 🧙

Remove outdated default import from README

Changed files
+3 -3
+3 -3
README.md
···
Let's extend our original example;
```js
-
import match from 'reghex';
+
import { match } from 'reghex';
const name = match('name')`
${/\w+/}
···
function that returns our root matcher:
```js
-
import match from 'reghex';
+
import { match } from 'reghex';
const value = match('value')`
(${/\w+/} | ${() => root})+
···
matched, which would cause other matchers to treat it like a mismatch!
```js
-
import match, { parse } from 'reghex';
+
import { match, parse } from 'reghex';
const name = match('name')((x) => {
return x[0] !== 'tim' ? x : undefined;