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