@shopify/function-enhancers
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -1,3 +0,2 @@ | ||
export declare type Resolver<T extends Function> = T; | ||
export declare const MAX_MAP_ENTRIES = 50; | ||
export default function memoize<F extends Function>(method: F, resolver?: Resolver<F>): F; | ||
export default function memoize<Method extends (...args: any[]) => any>(method: Method, resolver?: (...args: Parameters<Method>) => any): Method; |
{ | ||
"name": "@shopify/function-enhancers", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "A set of helpers to enhance functions.", |
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
6539
55