function callMemoOrStaticFn<TObject, TArgs, TReturn>(
obj,
fnKey,
staticFn, ...
args): TReturn;Defined in: utils.ts:632
Looks to run the memoized function with the builder pattern on the object if it exists, otherwise fall back to the static method passed in.
TObject extends Record<string, any>
TArgs extends any[]
TReturn
TObject
string
(obj, ...args) => TReturn
...TArgs
TReturn