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

@kakasoo/proto-typescript

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kakasoo/proto-typescript - npm Package Compare versions

Comparing version 1.26.4 to 1.26.5

8

dist/types/array.type.d.ts

@@ -6,3 +6,9 @@ import { NeverType } from './never.type';

export declare namespace ArrayType {
type Filter = any;
type _FilterNull<AllowNull extends boolean, Target> = [
...(AllowNull extends false ? (Equal<Target, null> extends true ? [] : [Target]) : [Target])
];
type _FilterUndefined<AllowUndefined extends boolean, Target> = [
...(AllowUndefined extends false ? (Equal<Target, undefined> extends true ? [] : [Target]) : [Target])
];
type Filter<T extends ReadonlyOrNot<any[]>, AllowNull extends boolean, AllowUndefined extends boolean> = T extends [infer First, ...infer Rest] ? [..._FilterNull<AllowNull, First>, Filter<Rest, AllowNull, AllowUndefined>] : [];
/**

@@ -9,0 +15,0 @@ * Get length of tuple or string literal type.

2

package.json
{
"name": "@kakasoo/proto-typescript",
"version": "1.26.4",
"version": "1.26.5",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

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