| 9 | // deep copy options if no buffers being passed in |
| 10 | let formopts = options.data || options.body |
| 11 | let notplain = k => typeof formopts[k] != 'string' |
| 12 | let basic = formopts && Object.keys(formopts).some(notplain) === false |
| 13 | if (basic) { |
| 14 | options = JSON.parse(JSON.stringify(options)) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…