@smartsoft001/utils 2.148.0 → 2.149.0
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/README.md +22 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -98,6 +98,28 @@ Methods:
|
|
|
98
98
|
</tr>
|
|
99
99
|
</table>
|
|
100
100
|
|
|
101
|
+
### RemoveHtmlService
|
|
102
|
+
|
|
103
|
+
Methods:
|
|
104
|
+
|
|
105
|
+
<table>
|
|
106
|
+
<tr>
|
|
107
|
+
<td>create(val: string | undefined | null): string</td>
|
|
108
|
+
<td>strip HTML tags and decode HTML entities, returning '' for empty input</td>
|
|
109
|
+
</tr>
|
|
110
|
+
</table>
|
|
111
|
+
|
|
112
|
+
### SlugService
|
|
113
|
+
|
|
114
|
+
Methods:
|
|
115
|
+
|
|
116
|
+
<table>
|
|
117
|
+
<tr>
|
|
118
|
+
<td>create(text: string | undefined | null): string</td>
|
|
119
|
+
<td>convert text to a URL friendly slug, transliterating Polish characters</td>
|
|
120
|
+
</tr>
|
|
121
|
+
</table>
|
|
122
|
+
|
|
101
123
|
### SpecificationService
|
|
102
124
|
|
|
103
125
|
Methods:
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartsoft001/utils",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.149.0",
|
|
4
|
+
"description": "Framework-free static helpers for identifiers, Polish document validation, arrays, objects, slugs and in-memory specification checks.",
|
|
4
5
|
"publishConfig": {
|
|
5
6
|
"access": "public"
|
|
6
7
|
},
|