You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @returns The memoized result or a newly computed value.
34
31
*
35
32
* @remarks
@@ -42,7 +39,7 @@ export function executeMemoize<O>(
42
39
inputs: Array<unknown>=[],
43
40
options: MemoizeOptions<O>
44
41
): Promise<O>|O{
45
-
constexpirationMs=Math.min(options.expirationMs??memoizationDefaultExpirationMs,memoizationMaxExpirationMs);// Default short delay and Prevent excessive retention
42
+
constttl=Math.min(options.ttl??memoizationDefaultTTL,memoizationMaxTTL);// Default short delay and Prevent excessive retention
0 commit comments