(obj)
| 34 | }, |
| 35 | |
| 36 | headers(obj) { |
| 37 | invariant( |
| 38 | isPlainObject(obj), |
| 39 | 'headers must be a plain object with string values. Instead received a %s.', |
| 40 | typeof obj |
| 41 | ) |
| 42 | }, |
| 43 | |
| 44 | method(str) { |
| 45 | typecheck('string', 'method', str) |
nothing calls this directly
no test coverage detected
searching dependent graphs…