arangochair icon indicating copy to clipboard operation
arangochair copied to clipboard

Keys not filtering

Open timothybean opened this issue 6 years ago • 0 comments

For anyone trying to use the library.

I was trying to use the keys filter, this initially didn't return any value.

Dug a little and discovers on line 96:

if (0 !== keys.size && !events.has(key)) return;

Should be:

if (0 !== keys.size && !keys.has(key)) return;

timothybean avatar Oct 29 '19 21:10 timothybean