(client, path, params, cb)
| 88 | } |
| 89 | |
| 90 | const batchRequest = (client, path, params, cb) => { |
| 91 | return tryCallback( |
| 92 | client.request(path, params).then(resp => new BatchResponse(resp)), |
| 93 | cb |
| 94 | ) |
| 95 | } |
| 96 | |
| 97 | module.exports = { |
| 98 | batchRequest, |
no test coverage detected