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

@eslint-react/tools

Package Overview
Dependencies
Maintainers
0
Versions
784
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eslint-react/tools - npm Package Compare versions

Comparing version 1.16.2-beta.8 to 1.16.2-beta.9

6

dist/index.d.ts

@@ -59,3 +59,3 @@ import * as Data from 'effect/Data';

*/
type IterableContainer<T = unknown> = ReadonlyArray<T> | readonly [];
type IterableContainer<T = unknown> = readonly [] | ReadonlyArray<T>;
/**

@@ -84,5 +84,5 @@ * Returns the element type of an array.

*/
type Narrow<TType> = {
type Narrow<TType> = (TType extends [] ? [] : never) | (TType extends bigint | boolean | number | string ? TType : never) | (TType extends Function ? TType : never) | {
[K in keyof TType]: Narrow<TType[K]>;
} | (TType extends [] ? [] : never) | (TType extends Function ? TType : never) | (TType extends bigint | boolean | number | string ? TType : never);
};
/**

@@ -89,0 +89,0 @@ * Infers embedded primitive type of any type

{
"name": "@eslint-react/tools",
"version": "1.16.2-beta.8",
"version": "1.16.2-beta.9",
"description": "ESLint React's std library and primitives.",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/rel1cx/eslint-react",

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