diff options
Diffstat (limited to 'src/find.js')
| -rw-r--r-- | src/find.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/find.js b/src/find.js index 7b605e97..5740ebd4 100644 --- a/src/find.js +++ b/src/find.js @@ -70,7 +70,7 @@ export function processAvailableMatchesByName(data, fuzz, { multipleNameMatches = Object.create(null), }) { for (const thing of data) { - if (!include(thing, thingConstructors)) continue; + if (!include(thing)) continue; for (const name of getMatchableNames(thing)) { if (typeof name !== 'string') { |