@typed/lambda
Advanced tools
Comparing version 3.2.0 to 3.2.1
@@ -41,4 +41,4 @@ export declare type Primitive = undefined | null | boolean | string | number | Function; | ||
declare type CastArray<T> = T extends readonly any[] ? T : []; | ||
declare type RemoveUnknown<A> = [A] extends [unknown] ? never : A; | ||
declare type RemoveUnknown<A> = [unknown] extends [A] ? never : A; | ||
export {}; | ||
//# sourceMappingURL=types.d.ts.map |
@@ -41,4 +41,4 @@ export declare type Primitive = undefined | null | boolean | string | number | Function; | ||
declare type CastArray<T> = T extends readonly any[] ? T : []; | ||
declare type RemoveUnknown<A> = [A] extends [unknown] ? never : A; | ||
declare type RemoveUnknown<A> = [unknown] extends [A] ? never : A; | ||
export {}; | ||
//# sourceMappingURL=types.d.ts.map |
{ | ||
"name": "@typed/lambda", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "Helpful functions for working in a functional style", | ||
@@ -29,3 +29,3 @@ "main": "./cjs/index.js", | ||
"dependencies": { | ||
"@typed/common": "^3.2.0" | ||
"@typed/common": "^3.3.0" | ||
}, | ||
@@ -39,4 +39,4 @@ "publishConfig": { | ||
"sideEffects": false, | ||
"gitHead": "8802f002b573472e8eac58ef8bc3b5724f749bce", | ||
"gitHead": "1aa9db7dae71fb3c8ab1e548304aaebe1f5e8cc1", | ||
"unpkg": "./umd/index.js" | ||
} |
@@ -119,2 +119,2 @@ export type Primitive = undefined | null | boolean | string | number | Function | ||
type CastArray<T> = T extends readonly any[] ? T : [] | ||
type RemoveUnknown<A> = [A] extends [unknown] ? never : A | ||
type RemoveUnknown<A> = [unknown] extends [A] ? never : A |
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
365014
Updated@typed/common@^3.3.0