diff options
Diffstat (limited to 'src/find.js')
-rw-r--r-- | src/find.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/find.js b/src/find.js index c7813e32..e590bc4f 100644 --- a/src/find.js +++ b/src/find.js @@ -34,7 +34,7 @@ export function processAvailableMatchesByName(data, { include = _thing => true, getMatchableNames = thing => - (Object.hasOwn(thing, 'name') + (thing.constructor.hasPropertyDescriptor('name') ? [thing.name] : []), @@ -72,7 +72,7 @@ export function processAvailableMatchesByDirectory(data, { include = _thing => true, getMatchableDirectories = thing => - (Object.hasOwn(thing, 'directory') + (thing.constructor.hasPropertyDescriptor('directory') ? [thing.directory] : [null]), |