New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ronin

Package Overview
Dependencies
Maintainers
4
Versions
1939
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.32 to 1.0.33

5

dist/index.d.ts

@@ -146,3 +146,6 @@ /**

declare namespace RONIN {
export type RecursiveNullish<T> = T extends Array<any> ? {
export type Json = string | number | boolean | null | Array<Json> | {
[T in string]: Json;
};
export type RecursiveNullish<T> = T extends Json ? T : T extends Array<any> ? {
[K in keyof T]?: RecursiveNullish<T[K]> | null;

@@ -149,0 +152,0 @@ } | null | undefined : T extends Date ? T | null | undefined : T extends Record<string, any> | RONIN.RoninRecord ? {

2

package.json
{
"version": "1.0.32",
"version": "1.0.33",
"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