(start, end, content, options)
| 366 | } |
| 367 | |
| 368 | overwrite(start, end, content, options) { |
| 369 | options = options || {}; |
| 370 | return this.update(start, end, content, { ...options, overwrite: !options.contentOnly }); |
| 371 | } |
| 372 | |
| 373 | update(start, end, content, options) { |
| 374 | start = start + this.offset; |
no test coverage detected