* Returns true if at least one of the bricks is busy. * @return {boolean}
()
| 719 | * @return {boolean} |
| 720 | */ |
| 721 | isBusy () { |
| 722 | return this._bricks.reduce((busy, brick) => |
| 723 | busy || this._getBrickState(brick, 'busy'), false) |
| 724 | } |
| 725 | |
| 726 | /** |
| 727 | * Returns lower bucket index for given brick. |
no test coverage detected