Socket
Socket
Sign inDemoInstall

@typed/lambda

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typed/lambda - npm Package Compare versions

Comparing version 2.1.0 to 3.0.0

2

cjs/types.d.ts

@@ -38,3 +38,3 @@ export declare type Primitive = undefined | null | boolean | string | number | Function;

export declare type OrToAnd<A> = (A extends any ? (u: A) => void : never) extends (i: infer B) => void ? B : never;
export declare type Include<A, B> = Exclude<A, Exclude<A, B>>;
export declare type Include<A, B> = A extends B ? A : never;
export declare type TypeGuard<A, B extends A> = (value: A) => value is B;

@@ -41,0 +41,0 @@ declare type CastArray<T> = T extends readonly any[] ? T : [];

@@ -38,3 +38,3 @@ export declare type Primitive = undefined | null | boolean | string | number | Function;

export declare type OrToAnd<A> = (A extends any ? (u: A) => void : never) extends (i: infer B) => void ? B : never;
export declare type Include<A, B> = Exclude<A, Exclude<A, B>>;
export declare type Include<A, B> = A extends B ? A : never;
export declare type TypeGuard<A, B extends A> = (value: A) => value is B;

@@ -41,0 +41,0 @@ declare type CastArray<T> = T extends readonly any[] ? T : [];

{
"name": "@typed/lambda",
"version": "2.1.0",
"version": "3.0.0",
"description": "Helpful functions for working in a functional style",

@@ -29,3 +29,3 @@ "main": "./cjs/index.js",

"dependencies": {
"@typed/common": "^2.1.0"
"@typed/common": "^3.0.0"
},

@@ -39,4 +39,4 @@ "publishConfig": {

"sideEffects": false,
"gitHead": "a381603384ec39ed3958beea7167949e7b47eb58",
"gitHead": "44de53576265995c67a5f4b5a2bdb72cfd3456ae",
"unpkg": "./umd/index.js"
}

@@ -113,3 +113,3 @@ export type Primitive = undefined | null | boolean | string | number | Function

export type Include<A, B> = Exclude<A, Exclude<A, B>>
export type Include<A, B> = A extends B ? A : never

@@ -116,0 +116,0 @@ export type TypeGuard<A, B extends A> = (value: A) => value is B

{
"compilerOptions": {
"rootDir": "./source",
"module": "es2015",
"module": "esnext",
"outDir": "./esm",

@@ -6,0 +6,0 @@ "composite": true,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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