(pq)
| 260 | } |
| 261 | |
| 262 | const throwIfError = function (pq) { |
| 263 | const err = pq.resultErrorMessage() || pq.errorMessage() |
| 264 | if (err) { |
| 265 | throw new Error(err) |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | Client.prototype._awaitResult = function (cb) { |
| 270 | this._queryCallback = cb |
no outgoing calls
no test coverage detected
searching dependent graphs…