(input: string)
| 40 | (filter: SubscriptionFilter) => |
| 41 | (event: Event): boolean => { |
| 42 | const startsWith = (input: string) => (prefix: string) => input.startsWith(prefix) |
| 43 | const isMatchingGenericTagCriterion = (key: string, criterion: string) => (tag: Tag): boolean => { |
| 44 | const [, tagName] = key |
| 45 | if (tag[0] !== tagName) { |
no outgoing calls
no test coverage detected