Skip to content

Commit 7079cf6

Browse files
committed
Improve documentation
1 parent f5f6341 commit 7079cf6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ Currently defined tokens:
2020
* ')': Right bracket
2121

2222
```
23-
import {disj, impl} from "boolean-simp";
23+
import {disj, impl, lcr} from "boolean-simp";
2424
console.log(disj("a+1+b|0"); // a+b
2525
console.log(disj("a|a+b")); // a|(a+b)
2626
console.log(impl("a|a+b")); // a
27+
console.log(lcr("1", ["a+b"])); // -(a+b) = -a | -b
2728
```
2829

2930
## Functions

0 commit comments

Comments
 (0)