* Returns a verbatim copy of the given line as it is in the document * @param {Number} row The row index to retrieve * @returns {string}
(row)
| 129 | * @returns {string} |
| 130 | **/ |
| 131 | getLine(row) { |
| 132 | return this.$lines[row] || ""; |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`. |
no outgoing calls
no test coverage detected