()
| 29 | } |
| 30 | |
| 31 | isEmpty() { |
| 32 | const block = this.getBlockAtIndex(0) |
| 33 | return this.blockList.length === 1 && block.isEmpty() && !block.hasAttributes() |
| 34 | } |
| 35 | |
| 36 | copy(options = {}) { |
| 37 | const blocks = options.consolidateBlocks ? this.blockList.consolidate().toArray() : this.blockList.toArray() |
no test coverage detected