(cb)
| 180 | } |
| 181 | |
| 182 | ready(cb) { |
| 183 | if (cb) { |
| 184 | helpers.asCallback( |
| 185 | this._ready.then(() => {}), |
| 186 | cb |
| 187 | ); |
| 188 | } |
| 189 | |
| 190 | return this._ready; |
| 191 | } |
| 192 | |
| 193 | _commandable(requireBlocking) { |
| 194 | if (requireBlocking ? this.paused : this._isClosed) { |
no outgoing calls
no test coverage detected