@thi.ng/checks 3.4.6 → 3.4.8

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**: 2023-10-23T07:37:37Z
3
+ - **Last updated**: 2023-11-09T10:28:18Z
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.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [3.4.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/checks@3.4.7) (2023-11-09)
13
+
14
+ #### 🩹 Bug fixes
15
+
16
+ - update isTypedArray() to return boolean ([2c0f72f](https://github.com/thi-ng/umbrella/commit/2c0f72f))
17
+
12
18
  ## [3.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/checks@3.4.0) (2023-08-04)
13
19
 
14
20
  #### 🚀 Features
package/README.md CHANGED
@@ -48,7 +48,7 @@ For Node.js REPL:
48
48
  const checks = await import("@thi.ng/checks");
49
49
  ```
50
50
 
51
- Package sizes (brotli'd, pre-treeshake): ESM: 1.60 KB
51
+ Package sizes (brotli'd, pre-treeshake): ESM: 1.61 KB
52
52
 
53
53
  ## Dependencies
54
54
 
package/is-typedarray.js CHANGED
@@ -1,4 +1,4 @@
1
- export const isTypedArray = (x) => x &&
1
+ export const isTypedArray = (x) => !!x &&
2
2
  (x instanceof Float32Array ||
3
3
  x instanceof Float64Array ||
4
4
  x instanceof Uint32Array ||
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/checks",
3
- "version": "3.4.6",
3
+ "version": "3.4.8",
4
4
  "description": "Collection of 70+ type, feature & value checks",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -32,21 +32,20 @@
32
32
  "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
33
33
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
34
34
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
35
- "doc:readme": "yarn doc:stats && tools:readme",
36
- "doc:stats": "tools:module-stats",
35
+ "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
37
36
  "pub": "yarn npm publish --access public",
38
- "test": "testament test"
37
+ "test": "bun test"
39
38
  },
40
39
  "dependencies": {
41
40
  "tslib": "^2.6.2"
42
41
  },
43
42
  "devDependencies": {
44
- "@microsoft/api-extractor": "^7.38.0",
45
- "@thi.ng/testament": "^0.3.24",
46
- "@types/node": "^20.8.7",
43
+ "@microsoft/api-extractor": "^7.38.2",
44
+ "@thi.ng/testament": "^0.4.1",
45
+ "@types/node": "^20.9.0",
47
46
  "rimraf": "^5.0.5",
48
47
  "tools": "^0.0.1",
49
- "typedoc": "^0.25.2",
48
+ "typedoc": "^0.25.3",
50
49
  "typescript": "^5.2.2"
51
50
  },
52
51
  "keywords": [
@@ -279,5 +278,5 @@
279
278
  "default": "./is-zero.js"
280
279
  }
281
280
  },
282
- "gitHead": "8d46d9326a9f9b81d65e7e274446f5964f9942ac\n"
281
+ "gitHead": "669a3151e4302480244fe3e60eff5e732ea5b7a7\n"
283
282
  }