(h)
| 109 | } |
| 110 | |
| 111 | function formatHeaders(h) { |
| 112 | return Object.keys(h).reduce((t, i) => (t[i.toLowerCase()] = h[i], t), {}) |
| 113 | } |
| 114 | |
| 115 | function formatArgument(s) { |
| 116 | return Object.fromEntries(s.split('&').map(item => item.split('='))) |
no outgoing calls
no test coverage detected