typia 12.0.0-dev.20260312-4 → 12.0.0-dev.20260313

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.
@@ -0,0 +1 @@
1
+ export declare const _jsonStringifyNumberNull: (value: number) => number | null;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports._jsonStringifyNumberNull = void 0;
4
+ const _jsonStringifyNumberNull = (value) => isFinite(value) ? value : null;
5
+ exports._jsonStringifyNumberNull = _jsonStringifyNumberNull;
6
+ //# sourceMappingURL=_jsonStringifyNumberNull.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_jsonStringifyNumberNull.js","sourceRoot":"","sources":["../../src/internal/_jsonStringifyNumberNull.ts"],"names":[],"mappings":";;;AAAO,MAAM,wBAAwB,GAAG,CAAC,KAAa,EAAiB,EAAE,CACvE,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC;AADpB,QAAA,wBAAwB,4BACJ"}
@@ -0,0 +1,4 @@
1
+ const _jsonStringifyNumberNull = (value) => isFinite(value) ? value : null;
2
+
3
+ export { _jsonStringifyNumberNull };
4
+ //# sourceMappingURL=_jsonStringifyNumberNull.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_jsonStringifyNumberNull.mjs","sources":["../../src/internal/_jsonStringifyNumberNull.ts"],"sourcesContent":[null],"names":[],"mappings":"MAAa,wBAAwB,GAAG,CAAC,KAAa,KACpD,QAAQ,CAAC,KAAK,CAAC,GAAG,KAAK,GAAG;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typia",
3
- "version": "12.0.0-dev.20260312-4",
3
+ "version": "12.0.0-dev.20260313",
4
4
  "description": "Superfast runtime validators with only one line",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -50,10 +50,10 @@
50
50
  "inquirer": "^8.2.5",
51
51
  "package-manager-detector": "^0.2.0",
52
52
  "randexp": "^0.5.3",
53
- "@typia/core": "^12.0.0-dev.20260312-4",
54
- "@typia/interface": "^12.0.0-dev.20260312-4",
55
- "@typia/transform": "^12.0.0-dev.20260312-4",
56
- "@typia/utils": "^12.0.0-dev.20260312-4"
53
+ "@typia/core": "^12.0.0-dev.20260313",
54
+ "@typia/utils": "^12.0.0-dev.20260313",
55
+ "@typia/interface": "^12.0.0-dev.20260313",
56
+ "@typia/transform": "^12.0.0-dev.20260313"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "typescript": ">=4.8.0 <5.10.0"
@@ -0,0 +1,2 @@
1
+ export const _jsonStringifyNumberNull = (value: number): number | null =>
2
+ isFinite(value) ? value : null;