(str)
| 10884 | } |
| 10885 | |
| 10886 | function isJsonLike(str) { |
| 10887 | var jsonStart = str.match(JSON_START); |
| 10888 | return jsonStart && JSON_ENDS[jsonStart[0]].test(str); |
| 10889 | } |
| 10890 | |
| 10891 | /** |
| 10892 | * Parse headers into key value object |
no test coverage detected