(router)
| 5 | |
| 6 | // Mounts a batch-handler onto a PromiseRouter. |
| 7 | function mountOnto(router) { |
| 8 | router.route('POST', batchPath, req => { |
| 9 | return handleBatch(router, req); |
| 10 | }); |
| 11 | } |
| 12 | |
| 13 | function parseURL(urlString) { |
| 14 | try { |
nothing calls this directly
no test coverage detected