(path, fn)
| 29 | } |
| 30 | |
| 31 | const get = (path, fn) => ['GET', path, fn]; |
| 32 | const put = (path, fn) => ['PUT', path, fn]; |
| 33 | const del = (path, fn) => ['DELETE', path, fn]; |
| 34 | const post = (path, fn) => ['POST', path, fn]; |
nothing calls this directly
no outgoing calls
no test coverage detected