Skip to content

Commit

Permalink
memoize3: remove unnecessary mixed type (#3022)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Apr 4, 2021
1 parent 657605c commit 1ee3dc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jsutils/memoize3.js
Expand Up @@ -5,7 +5,7 @@ export function memoize3<
A1: { ... } | $ReadOnlyArray<mixed>,
A2: { ... } | $ReadOnlyArray<mixed>,
A3: { ... } | $ReadOnlyArray<mixed>,
R: mixed,
R,
>(fn: (A1, A2, A3) => R): (A1, A2, A3) => R {
let cache0;

Expand Down

0 comments on commit 1ee3dc5

Please sign in to comment.