(...queryPartsToAdd: string[])
| 134 | } |
| 135 | |
| 136 | prepend(...queryPartsToAdd: string[]): this { |
| 137 | this.queryParts.unshift(...queryPartsToAdd); |
| 138 | return this; |
| 139 | } |
| 140 | |
| 141 | includes(...searchStrings: string[]): boolean { |
| 142 | return this.getQueryParts().some(queryPart => searchStrings.includes(queryPart)); |
no outgoing calls
no test coverage detected