diff options
| author | Akshay Nair <phenax5@gmail.com> | 2022-01-07 18:13:40 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2022-01-07 18:14:06 +0530 |
| commit | 6639605b395ceb1355c95e06ff0e1470adc54101 (patch) | |
| tree | 01e300c50086f8db47300388ab3d7a5e5f83072d /src/parser.ts | |
| parent | b3fc08cae05f997e71d846109d400e630b8a4c35 (diff) | |
| download | elxr-6639605b395ceb1355c95e06ff0e1470adc54101.tar.gz elxr-6639605b395ceb1355c95e06ff0e1470adc54101.zip | |
refactor: simplifies quantifier logic + moves stuff around
Diffstat (limited to '')
| -rw-r--r-- | src/parser/utils.ts (renamed from src/parser.ts) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.ts b/src/parser/utils.ts index a7d6528..00b50f8 100644 --- a/src/parser.ts +++ b/src/parser/utils.ts @@ -11,7 +11,7 @@ import { } from 'fp-ts/Either' import { none, some, Option } from 'fp-ts/Option' import { mapFst, mapSnd, snd } from 'fp-ts/Tuple' -import { eq } from './utils' +import { eq } from '../utils' export type char = string |
