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

ronin

Package Overview
Dependencies
Maintainers
3
Versions
1904
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ronin - npm Package Compare versions

Comparing version 1.0.14 to 1.0.15

6

dist/index.d.ts
type RecursivePartial<T> = {
[P in keyof T]?: RecursivePartial<T[P]>;
[K in keyof T]?: T[K] extends Array<infer U> ? Array<RecursivePartial<U>> : T[K] extends object ? RecursivePartial<T[K]> : T[K];
};

@@ -83,4 +83,4 @@ type QueryInstructions = {

};
type RecursiveNullish<T> = T extends object ? {
[P in keyof T]?: RecursiveNullish<T[P]> | null;
type RecursiveNullish<T> = T extends Array<infer U> ? Array<RecursiveNullish<U>> : T extends Record<string, unknown> ? {
[K in keyof T]?: RecursiveNullish<T[K]> | null;
} : T | null | undefined;

@@ -87,0 +87,0 @@

{
"version": "1.0.14",
"version": "1.0.15",
"name": "ronin",

@@ -4,0 +4,0 @@ "scripts": {

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