@dvirus-js/utils 0.0.7 → 0.0.13
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 +50 -0
- package/index.js +666 -534
- package/lib/get-empty-keys.d.ts +29 -0
- package/lib/html-text-parser/api.d.ts +62 -0
- package/lib/html-text-parser/constant.d.ts +0 -1
- package/lib/html-text-parser/dom-renderer.d.ts +17 -0
- package/lib/html-text-parser/grouping.d.ts +2 -0
- package/lib/html-text-parser/index.d.ts +2 -2
- package/lib/html-text-parser/parsing.d.ts +26 -0
- package/lib/html-text-parser/segment.d.ts +2 -0
- package/lib/html-text-parser/stylesheet.d.ts +21 -0
- package/lib/html-text-parser/tag-regex.d.ts +3 -0
- package/lib/html-text-parser/tags.d.ts +43 -0
- package/lib/html-text-parser/types.d.ts +37 -19
- package/lib/http.d.ts +146 -16
- package/package.json +1 -1
- package/lib/html-text-parser/html-text-parser.d.ts +0 -70
- package/lib/html-text-parser/methods.d.ts +0 -51
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,53 @@
|
|
|
1
|
+
## 0.0.12 (2026-05-31)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for utils to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 0.0.11 (2026-05-31)
|
|
6
|
+
|
|
7
|
+
This was a version bump only for utils to align it with other projects, there were no code changes.
|
|
8
|
+
|
|
9
|
+
## 0.0.10 (2026-05-31)
|
|
10
|
+
|
|
11
|
+
This was a version bump only for utils to align it with other projects, there were no code changes.
|
|
12
|
+
|
|
13
|
+
## 0.0.9 (2026-05-31)
|
|
14
|
+
|
|
15
|
+
This was a version bump only for utils to align it with other projects, there were no code changes.
|
|
16
|
+
|
|
17
|
+
## 0.0.8 (2026-05-31)
|
|
18
|
+
|
|
19
|
+
### 🩹 Fixes
|
|
20
|
+
|
|
21
|
+
- htmlParser util ([80c83f2](https://github.com/Dvirus97/dvirus-js/commit/80c83f2))
|
|
22
|
+
- add getEmptyKeys util ([bcde711](https://github.com/Dvirus97/dvirus-js/commit/bcde711))
|
|
23
|
+
- http util ([82e6f97](https://github.com/Dvirus97/dvirus-js/commit/82e6f97))
|
|
24
|
+
|
|
25
|
+
### ❤️ Thank You
|
|
26
|
+
|
|
27
|
+
- Dvir Cohen
|
|
28
|
+
|
|
29
|
+
## 0.0.701 (2026-05-31)
|
|
30
|
+
|
|
31
|
+
### 🩹 Fixes
|
|
32
|
+
|
|
33
|
+
- htmlParser util ([74b588c](https://github.com/Dvirus97/dvirus-js/commit/74b588c))
|
|
34
|
+
- add getEmptyKeys util ([3c84e53](https://github.com/Dvirus97/dvirus-js/commit/3c84e53))
|
|
35
|
+
- http util ([4814fb5](https://github.com/Dvirus97/dvirus-js/commit/4814fb5))
|
|
36
|
+
|
|
37
|
+
### ❤️ Thank You
|
|
38
|
+
|
|
39
|
+
- Dvir Cohen
|
|
40
|
+
|
|
41
|
+
## 0.0.7 (2026-05-25)
|
|
42
|
+
|
|
43
|
+
### 🩹 Fixes
|
|
44
|
+
|
|
45
|
+
- update utils internals and http error handling ([c1e9420](https://github.com/Dvirus97/dvirus-js/commit/c1e9420))
|
|
46
|
+
|
|
47
|
+
### ❤️ Thank You
|
|
48
|
+
|
|
49
|
+
- Dvir Cohen
|
|
50
|
+
|
|
1
51
|
## 0.0.6 (2026-05-20)
|
|
2
52
|
|
|
3
53
|
### 🩹 Fixes
|