(queryString: string)
| 17 | private parsedQueriesList: Queries[]; |
| 18 | |
| 19 | constructor(queryString: string) { |
| 20 | this.queryString = queryString; |
| 21 | this.parsedQueriesList = this.parseQueries(); |
| 22 | } |
| 23 | |
| 24 | private parseKeyValue(keyValuePair: string): Queries { |
| 25 | const [key, value] = keyValuePair.split(KEY_VALUE_DELIMITER); |
nothing calls this directly
no test coverage detected