@thi.ng/strings 3.8.9 → 3.8.11

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 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-11-09T15:34:31Z
3
+ - **Last updated**: 2024-11-24T18:15:49Z
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.8.9",
3
+ "version": "3.8.11",
4
4
  "description": "Various string formatting & utility functions",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -28,7 +28,7 @@
28
28
  "build:decl": "tsc --declaration --emitDeclarationOnly",
29
29
  "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
30
30
  "clean": "bun ../../tools/src/clean-package.ts",
31
- "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
31
+ "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
32
32
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
33
33
  "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
34
34
  "pub": "yarn npm publish --access public",
@@ -36,16 +36,16 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.11",
40
- "@thi.ng/errors": "^2.5.17",
41
- "@thi.ng/hex": "^2.3.55",
42
- "@thi.ng/memoize": "^4.0.1"
39
+ "@thi.ng/api": "^8.11.13",
40
+ "@thi.ng/errors": "^2.5.19",
41
+ "@thi.ng/hex": "^2.3.57",
42
+ "@thi.ng/memoize": "^4.0.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@microsoft/api-extractor": "^7.47.9",
45
+ "@microsoft/api-extractor": "^7.48.0",
46
46
  "esbuild": "^0.24.0",
47
- "typedoc": "^0.26.7",
48
- "typescript": "^5.6.2"
47
+ "typedoc": "^0.26.11",
48
+ "typescript": "^5.7.2"
49
49
  },
50
50
  "keywords": [
51
51
  "ansi",
@@ -208,5 +208,5 @@
208
208
  "thi.ng": {
209
209
  "year": 2015
210
210
  },
211
- "gitHead": "c2c371069911fdae138149fdcf937c4ad7a8c71e\n"
211
+ "gitHead": "85e2f0935b58bde5d165fbe754fafec5da0b731e\n"
212
212
  }
package/utf8.d.ts CHANGED
@@ -32,7 +32,7 @@ export declare const utf8Decode: (buf: Uint8Array, start: number, num: number) =
32
32
  *
33
33
  * @param buf
34
34
  */
35
- export declare const utf8Encode: (src: string, capacity?: number) => Uint8Array;
35
+ export declare const utf8Encode: (src: string, capacity?: number) => Uint8Array<ArrayBuffer>;
36
36
  /**
37
37
  * Returns character string for given UTF-8 codepoint.
38
38
  *