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

untyped

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

untyped - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [0.2.3](https://github.com/unjs/untyped/compare/v0.2.2...v0.2.3) (2021-04-02)
### Bug Fixes
* handle empty object type ([98e6172](https://github.com/unjs/untyped/commit/98e617262cf4dac19ebe8f3a588dd02b3b268e97))
### [0.2.2](https://github.com/unjs/untyped/compare/v0.2.1...v0.2.2) (2021-03-28)

@@ -7,0 +14,0 @@

2

dist/untyped.d.ts

@@ -1,2 +0,2 @@

declare type JSValue = string | number | bigint | boolean | symbol | Function | Array<any> | undefined | null;
declare type JSValue = string | number | bigint | boolean | symbol | Function | Array<any> | undefined | object | null;
declare type JSType = 'string' | 'number' | 'bigint' | 'boolean' | 'symbol' | 'function' | 'object' | 'any' | 'array';

@@ -3,0 +3,0 @@ declare type ResolveFn = ((value: any, get: (key: string) => any) => JSValue);

@@ -131,2 +131,5 @@ 'use strict';

}
if (!("default" in schema) && (schema.type === "object" || schema.type === "any")) {
schema.default = {};
}
}

@@ -133,0 +136,0 @@

{
"name": "untyped",
"version": "0.2.2",
"version": "0.2.3",
"description": "",

@@ -5,0 +5,0 @@ "repository": "unjs/untyped",

Sorry, the diff of this file is not supported yet

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