(position)
| 131 | } |
| 132 | |
| 133 | getStringAtPosition(position) { |
| 134 | return this.getStringAtRange([ position, position + 1 ]) |
| 135 | } |
| 136 | |
| 137 | startsWithString(string) { |
| 138 | return this.getStringAtRange([ 0, string.length ]) === string |
no test coverage detected