* Validates that the given index is not lower than 0 or higher than the amount of blocks * * @param {number} index - index of blocks array to validate * @returns {boolean}
(index: number)
| 988 | * @returns {boolean} |
| 989 | */ |
| 990 | private validateIndex(index: number): boolean { |
| 991 | return !(index < 0 || index >= this._blocks.length); |
| 992 | } |
| 993 | |
| 994 | /** |
| 995 | * Block mutation callback |
no outgoing calls
no test coverage detected