@thi.ng/strings 3.7.22 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/package.json +10 -10
  3. package/utf8.d.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-07T20:40:47Z
3
+ - **Last updated**: 2024-03-13T14:04:31Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/strings",
3
- "version": "3.7.22",
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.29",
40
- "@thi.ng/errors": "^2.4.20",
41
- "@thi.ng/hex": "^2.3.39",
42
- "@thi.ng/memoize": "^3.1.64"
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.40.1",
46
- "esbuild": "^0.20.0",
45
+ "@microsoft/api-extractor": "^7.42.3",
46
+ "esbuild": "^0.20.1",
47
47
  "rimraf": "^5.0.5",
48
- "typedoc": "^0.25.7",
49
- "typescript": "^5.3.3"
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": "69100942474942f7446ac645d59d91e7dfc352f9\n"
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;