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
**NOTE**: The original function is the function used in the composition, the composition only applies to the options. In the example above, `upToFive` does not call `simple`, it calls `fn`.
@@ -110,7 +110,7 @@ setTimeout(() => {
110
110
111
111
**NOTE**: If you don't want rejections to auto-remove the entry from cache, set `async` to `false` (or simply do not set it), but be aware this will also remove the cache listeners that fire on successful resolution.
112
112
113
-
### matchesArg
113
+
### isArgEqual
114
114
115
115
`function(arg1: any, arg2: any): boolean`, _defaults to `isSameValueZero`_
**NOTE**: The default method tests for [SameValueZero](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) equality, which is summarized as strictly equal while also considering `NaN` equal to `NaN`.
If your transformed keys require something other than `SameValueZero` equality, you can combine `transformKey` with [`matchesArg`](#isequal) for completely custom key creation and comparison.
264
+
If your transformed keys require something other than `SameValueZero` equality, you can combine `transformKey` with [`isArgEqual`](#isequal) for completely custom key creation and comparison.
0 commit comments