Add bike cafes

This commit is contained in:
Pieter Fiers 2020-07-29 15:55:50 +02:00
parent e4df5ffcb4
commit 581ec9d2a7
11 changed files with 292 additions and 90 deletions

View file

@ -111,6 +111,14 @@ export class Tag extends TagsFilter {
}
export function anyValueExcept(key: string, exceptValue: string) {
return new And([
new Tag(key, "*"),
new Tag(key, exceptValue, true)
])
}
export class Or extends TagsFilter {
public or: TagsFilter[]