@thi.ng/arrays 2.13.0 → 2.13.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-06-18T12:01:21Z
3
+ - **Last updated**: 2025-07-10T14:20:23Z
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/arrays",
3
- "version": "2.13.0",
3
+ "version": "2.13.2",
4
4
  "description": "Array / Arraylike utilities",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,16 +39,16 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.29",
43
- "@thi.ng/checks": "^3.7.9",
44
- "@thi.ng/compare": "^2.4.21",
45
- "@thi.ng/equiv": "^2.1.85",
46
- "@thi.ng/errors": "^2.5.35",
47
- "@thi.ng/random": "^4.1.20"
42
+ "@thi.ng/api": "^8.11.30",
43
+ "@thi.ng/checks": "^3.7.10",
44
+ "@thi.ng/compare": "^2.4.22",
45
+ "@thi.ng/equiv": "^2.1.86",
46
+ "@thi.ng/errors": "^2.5.36",
47
+ "@thi.ng/random": "^4.1.21"
48
48
  },
49
49
  "devDependencies": {
50
- "esbuild": "^0.25.5",
51
- "typedoc": "^0.28.5",
50
+ "esbuild": "^0.25.6",
51
+ "typedoc": "^0.28.7",
52
52
  "typescript": "^5.8.3"
53
53
  },
54
54
  "keywords": [
@@ -187,5 +187,5 @@
187
187
  "tag": "array",
188
188
  "year": 2018
189
189
  },
190
- "gitHead": "b076434a497b291ad33e81b1a15f6a71e2c82cc2\n"
190
+ "gitHead": "56d8f088389b22192a06e9a395b5eecebf47697a\n"
191
191
  }
package/permutation.d.ts CHANGED
@@ -12,7 +12,7 @@ import type { IRandom } from "@thi.ng/random";
12
12
  * ```ts tangle:../export/permutation.ts
13
13
  * import { permutation } from "@thi.ng/arrays";
14
14
  *
15
- * console.log(permuation(8));
15
+ * console.log(permutation(8));
16
16
  * // [ 6, 2, 7, 5, 4, 0, 3, 1 ]
17
17
  * ```
18
18
  *