(str, search, replace)
| 34 | else this.uriEncodedString = this.objectToEncodedString(patchInput) |
| 35 | } |
| 36 | replaceAll(str, search, replace) { |
| 37 | return str.split(search).join(replace) |
| 38 | } |
| 39 | objectToEncodedString(obj) { |
| 40 | return Object.keys(obj) |
| 41 | .map(identifierCell => { |
no test coverage detected