(str)
| 10139 | } |
| 10140 | |
| 10141 | function isJsonLike(str) { |
| 10142 | var jsonStart = str.match(JSON_START); |
| 10143 | return jsonStart && JSON_ENDS[jsonStart[0]].test(str); |
| 10144 | } |
| 10145 | |
| 10146 | /** |
| 10147 | * Parse headers into key value object |
no outgoing calls
no test coverage detected