(unencodedCell)
| 62 | return patchObj |
| 63 | } |
| 64 | encodeCell(unencodedCell) { |
| 65 | return this.encoders.reduce((str, encoder) => encoder.encode(str), unencodedCell) |
| 66 | } |
| 67 | decodeCell(encodedCell) { |
| 68 | return this.encoders |
| 69 | .slice() |
no outgoing calls
no test coverage detected