()
| 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 | } |
| 55 | get object() { |
| 56 | const patchObj = {} |
| 57 | if (!this.uriEncodedString) return patchObj |
nothing calls this directly
no test coverage detected