@sinclair/typebox
Advanced tools
Comparing version 0.31.26 to 0.31.27
{ | ||
"name": "@sinclair/typebox", | ||
"version": "0.31.26", | ||
"version": "0.31.27", | ||
"description": "JSONSchema Type Builder with Static Type Resolution for TypeScript", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -563,2 +563,4 @@ export declare const Transform: unique symbol; | ||
function IsBoolean(value: unknown): value is boolean; | ||
/** Returns true if this value is a Date object */ | ||
function IsDate(value: unknown): value is Date; | ||
/** Returns true if this value is null */ | ||
@@ -572,2 +574,4 @@ function IsNull(value: unknown): value is null; | ||
function IsString(value: unknown): value is string; | ||
/** Returns true if this value is a Uint8Array */ | ||
function IsUint8Array(value: unknown): value is Uint8Array; | ||
/** Returns true if this value is undefined */ | ||
@@ -574,0 +578,0 @@ function IsUndefined(value: unknown): value is undefined; |
@@ -165,3 +165,3 @@ "use strict"; | ||
else { | ||
return new Date(0); | ||
return new Date(); | ||
} | ||
@@ -168,0 +168,0 @@ } |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
538235
8568