(callback: (queryParts: string[]) => string[])
| 114 | } |
| 115 | |
| 116 | edit(callback: (queryParts: string[]) => string[]): this { |
| 117 | this.queryParts = callback(this.getQueryParts()); |
| 118 | return this; |
| 119 | } |
| 120 | |
| 121 | replace(searchValue: string | RegExp, replaceValue: string): this { |
| 122 | this.set(this.get().replace(searchValue, replaceValue)); |
no test coverage detected