(arr)
| 47 | .join(this.grammar.rowDelimiter) |
| 48 | } |
| 49 | arrayToEncodedString(arr) { |
| 50 | return arr.map(line => line.map(cell => this.encodeCell(cell)).join(this.grammar.columnDelimiter)).join(this.grammar.rowDelimiter) |
| 51 | } |
| 52 | get array() { |
| 53 | return this.uriEncodedString.split(this.grammar.rowDelimiter).map(line => line.split(this.grammar.columnDelimiter).map(cell => this.decodeCell(cell))) |
| 54 | } |
no test coverage detected