@teleology/fp
Advanced tools
Comparing version 3.0.4 to 3.0.5
@@ -5,3 +5,3 @@ export declare type Iterable = { | ||
export declare type Equalizer = (v: any, i: number) => boolean; | ||
export declare type AsyncFunction = (...any: any[]) => Promise<any>; | ||
export declare type Chainable = AsyncFunction | Function; | ||
export declare type AsyncFunction = (...args: any) => Promise<any>; | ||
export declare type Chainable = Promise<any> | AsyncFunction | Function | any; |
{ | ||
"name": "@teleology/fp", | ||
"version": "3.0.4", | ||
"version": "3.0.5", | ||
"description": "A small collection of functional programming utils", | ||
@@ -5,0 +5,0 @@ "author": "Chris Sullivan <chrissullivan.dev@gmail.com>", |
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
28789