@thi.ng/strings 3.7.21 → 3.7.23
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 +1 -1
- package/package.json +10 -10
- package/utf8.d.ts +1 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/strings",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.23",
|
|
4
4
|
"description": "Various string formatting & utility functions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.9.
|
|
40
|
-
"@thi.ng/errors": "^2.
|
|
41
|
-
"@thi.ng/hex": "^2.3.
|
|
42
|
-
"@thi.ng/memoize": "^3.1.
|
|
39
|
+
"@thi.ng/api": "^8.9.30",
|
|
40
|
+
"@thi.ng/errors": "^2.5.0",
|
|
41
|
+
"@thi.ng/hex": "^2.3.40",
|
|
42
|
+
"@thi.ng/memoize": "^3.1.65"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@microsoft/api-extractor": "^7.
|
|
46
|
-
"esbuild": "^0.20.
|
|
45
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
46
|
+
"esbuild": "^0.20.1",
|
|
47
47
|
"rimraf": "^5.0.5",
|
|
48
|
-
"typedoc": "^0.25.
|
|
49
|
-
"typescript": "^5.
|
|
48
|
+
"typedoc": "^0.25.12",
|
|
49
|
+
"typescript": "^5.4.2"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"ansi",
|
|
@@ -204,5 +204,5 @@
|
|
|
204
204
|
"thi.ng": {
|
|
205
205
|
"year": 2015
|
|
206
206
|
},
|
|
207
|
-
"gitHead": "
|
|
207
|
+
"gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
|
|
208
208
|
}
|
package/utf8.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export declare const utf8Encode: (src: string, capacity?: number) => Uint8Array;
|
|
|
42
42
|
export declare const fromUtf8CodePoint: (x: number) => string;
|
|
43
43
|
export declare const UTF8Error: {
|
|
44
44
|
new (msg?: string | undefined): {
|
|
45
|
+
origMessage: string;
|
|
45
46
|
name: string;
|
|
46
47
|
message: string;
|
|
47
48
|
stack?: string | undefined;
|