* @param {string} path * @param {Object|null} body * @returns {typeof q}
(path, body = null)
| 303 | * @returns {typeof q} |
| 304 | */ |
| 305 | delete(path, body = null) { |
| 306 | pending.push(del(path, body)); |
| 307 | return q; |
| 308 | }, |
| 309 | /** |
| 310 | * Dispatch all queued requests in parallel and resolve with an array |
| 311 | * of APIResult objects in the order they were queued. |