@thi.ng/checks 3.6.21 → 3.6.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.
- package/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/is-ascii.d.ts +2 -2
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 201 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
package/is-ascii.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Returns true iff all chars are in ASCII range [0x00
|
|
2
|
+
* Returns true iff all chars are in ASCII range `[0x00,0x7f]`
|
|
3
3
|
*
|
|
4
4
|
* @param x -
|
|
5
5
|
*/
|
|
6
6
|
export declare const isASCII: (x: string) => boolean;
|
|
7
7
|
/**
|
|
8
|
-
* Returns true iff all chars are in printable ASCII range [0x20
|
|
8
|
+
* Returns true iff all chars are in printable ASCII range `[0x20,0x7e]`
|
|
9
9
|
*
|
|
10
10
|
* @param x -
|
|
11
11
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/checks",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.23",
|
|
4
4
|
"description": "Collection of 70+ type, feature & value checks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
38
38
|
"clean": "bun ../../tools/src/clean-package.ts",
|
|
39
39
|
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
|
|
40
|
-
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
41
40
|
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
42
41
|
"pub": "yarn npm publish --access public",
|
|
43
42
|
"test": "bun test",
|
|
@@ -47,9 +46,9 @@
|
|
|
47
46
|
"tslib": "^2.8.1"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@types/node": "^22.
|
|
51
|
-
"esbuild": "^0.
|
|
52
|
-
"typedoc": "^0.27.
|
|
49
|
+
"@types/node": "^22.13.1",
|
|
50
|
+
"esbuild": "^0.25.0",
|
|
51
|
+
"typedoc": "^0.27.7",
|
|
53
52
|
"typescript": "^5.7.3"
|
|
54
53
|
},
|
|
55
54
|
"keywords": [
|
|
@@ -291,5 +290,5 @@
|
|
|
291
290
|
"thi.ng": {
|
|
292
291
|
"alias": "ch"
|
|
293
292
|
},
|
|
294
|
-
"gitHead": "
|
|
293
|
+
"gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
|
|
295
294
|
}
|