Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sinclair/typebox

Package Overview
Dependencies
Maintainers
1
Versions
339
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sinclair/typebox - npm Package Compare versions

Comparing version 0.31.26 to 0.31.27

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc