you can now do blacklisting or while list by passing options comboWhiteList and comboBlackList whose shape are {[key:string]: string[]} .... so { comboWhiteList: { hello: ['earth', 'mars'] } would only allow events where who had a hello property with values earth or mars (the same blacklist would not allow events which matched in the same way.
you can now do blacklisting or while list by passing options
comboWhiteList
andcomboBlackList
whose shape are{[key:string]: string[]}
.... so{ comboWhiteList: { hello: ['earth', 'mars'] }
would only allow events where who had ahello
property with valuesearth
ormars
(the same blacklist would not allow events which matched in the same way.this makes it easy to do stuff like:
etc...