(str)
| 11392 | } |
| 11393 | |
| 11394 | function isJsonLike(str) { |
| 11395 | var jsonStart = str.match(JSON_START); |
| 11396 | return jsonStart && JSON_ENDS[jsonStart[0]].test(str); |
| 11397 | } |
| 11398 | |
| 11399 | /** |
| 11400 | * Parse headers into key value object |
no outgoing calls
no test coverage detected