(opts)
| 240 | } |
| 241 | |
| 242 | function buildKey (opts) { |
| 243 | const { path, method, body, headers, query } = opts |
| 244 | |
| 245 | return { |
| 246 | path, |
| 247 | method, |
| 248 | body, |
| 249 | headers, |
| 250 | query |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | function generateKeyValues (data) { |
| 255 | const keys = Object.keys(data) |
no outgoing calls
no test coverage detected