@briza/illogical 1.7.0 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +8 -0
- package/lib/illogical.esm.js +58 -562
- package/lib/illogical.js +58 -562
- package/package.json +1 -1
- package/readme.md +0 -15
- package/types/common/evaluable.d.ts +6 -4
- package/types/expression/logical/index.d.ts +1 -1
- package/types/index.d.ts +6 -5
- package/types/operand/index.d.ts +1 -1
- package/types/operand/reference.d.ts +2 -1
- package/types/parser/index.d.ts +3 -0
- package/types/unsafe/simplify.d.ts +1 -1
package/changelog.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# illogical changelog
|
|
2
2
|
|
|
3
|
+
## 1.7.2
|
|
4
|
+
|
|
5
|
+
- Resolving performance issues on simplify and removing unnecessary unsafeSimplify.
|
|
6
|
+
|
|
7
|
+
## 1.7.1
|
|
8
|
+
|
|
9
|
+
- Adding Reference cache and other performance improvements to condition parsing.
|
|
10
|
+
|
|
3
11
|
## 1.7.0
|
|
4
12
|
|
|
5
13
|
- Introducing unsafeSimplify which simplifies the condition without fully parsing it beforehand.
|