(key: string, criterion: string)
| 8 | export const isGeohashTagQuery = (key: string): boolean => key === geohashTagQuery |
| 9 | |
| 10 | export const isGeohashPrefixCriterion = (key: string, criterion: string): boolean => |
| 11 | isGeohashTagQuery(key) && criterion.endsWith('*') |
| 12 | |
| 13 | export const stripGeohashPrefixWildcard = (criterion: string): string => criterion.slice(0, -1) |
no test coverage detected