@thi.ng/arrays 2.8.9 → 2.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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-13T14:04:31Z
3
+ - **Last updated**: 2024-03-21T16:11: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/README.md CHANGED
@@ -54,7 +54,7 @@ For Node.js REPL:
54
54
  const arrays = await import("@thi.ng/arrays");
55
55
  ```
56
56
 
57
- Package sizes (brotli'd, pre-treeshake): ESM: 2.91 KB
57
+ Package sizes (brotli'd, pre-treeshake): ESM: 2.90 KB
58
58
 
59
59
  ## Dependencies
60
60
 
package/iterator.js CHANGED
@@ -1,7 +1,6 @@
1
1
  function* arrayIterator(buf, start = 0, end) {
2
2
  if (!buf)
3
3
  return;
4
- start = start;
5
4
  end === void 0 && (end = buf.length);
6
5
  const step = start <= end ? 1 : -1;
7
6
  for (; start !== end; start += step) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/arrays",
3
- "version": "2.8.9",
3
+ "version": "2.8.11",
4
4
  "description": "Array / Arraylike utilities",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,11 +37,11 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@thi.ng/api": "^8.9.30",
40
- "@thi.ng/checks": "^3.5.3",
40
+ "@thi.ng/checks": "^3.5.4",
41
41
  "@thi.ng/compare": "^2.2.26",
42
42
  "@thi.ng/equiv": "^2.1.52",
43
43
  "@thi.ng/errors": "^2.5.1",
44
- "@thi.ng/random": "^3.6.38"
44
+ "@thi.ng/random": "^3.7.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@microsoft/api-extractor": "^7.42.3",
@@ -166,5 +166,5 @@
166
166
  "thi.ng": {
167
167
  "year": 2018
168
168
  },
169
- "gitHead": "bc0f3cb07d6f1cab6dbdc5ff57428f5484e711bb\n"
169
+ "gitHead": "da965520b2f3f8c259a791e8e8864308be2ba0be\n"
170
170
  }