@typed/lambda
Advanced tools
Comparing version 2.1.0 to 3.0.0
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
307781
134
1150
+ Added@typed/common@3.5.0(transitive)
+ Addedtslib@2.8.1(transitive)
- Removed@typed/common@2.1.0(transitive)
Updated@typed/common@^3.0.0