(str)
| 9254 | } |
| 9255 | |
| 9256 | function isJsonLike(str) { |
| 9257 | var jsonStart = str.match(JSON_START); |
| 9258 | return jsonStart && JSON_ENDS[jsonStart[0]].test(str); |
| 9259 | } |
| 9260 | |
| 9261 | /** |
| 9262 | * Parse headers into key value object |
no outgoing calls
no test coverage detected