Skip to content

Commit e94a12f

Browse files
authored
feat: expose error types
Also create web demo: RegExp Equivalence Checker
1 parent d736290 commit e94a12f

File tree

5 files changed

+735
-4
lines changed

5 files changed

+735
-4
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Zero-dependency TypeScript library for regex utilities that go beyond string matching.
44
These are surprisingly hard to come by for any programming language.
55

6+
- [Documentation](https://gruhn.github.io/regex-utils/)
7+
- [Web demo: RegExp Equivalence Checker](https://gruhn.github.io/regex-utils/equiv-checker.html)
8+
9+
## API Overview
10+
611
- Set-like operations:
712
- [.and(...)](https://gruhn.github.io/regex-utils/classes/RegexBuilder.html#and) - Compute intersection of two regex.
813
- [.not()](https://gruhn.github.io/regex-utils/classes/RegexBuilder.html#not) - Compute the complement of a regex.
@@ -26,7 +31,7 @@ npm install @gruhn/regex-utils
2631
import { RB } from '@gruhn/regex-utils'
2732
```
2833

29-
## Examples
34+
## Example Use Cases
3035

3136
### Comment Regex using Complement
3237

0 commit comments

Comments
 (0)