(str)
| 11463 | } |
| 11464 | |
| 11465 | function isJsonLike(str) { |
| 11466 | var jsonStart = str.match(JSON_START); |
| 11467 | return jsonStart && JSON_ENDS[jsonStart[0]].test(str); |
| 11468 | } |
| 11469 | |
| 11470 | /** |
| 11471 | * Parse headers into key value object |
no test coverage detected