(str)
| 760 | } |
| 761 | |
| 762 | function parseError (str) { |
| 763 | try { |
| 764 | JSON.parse(str); throw new SyntaxError('strict violation') |
| 765 | } catch (e) { |
| 766 | return e.message |
| 767 | } |
| 768 | } |
| 769 | |
| 770 | function shouldContainInBody (str) { |
| 771 | return function (res) { |
no outgoing calls
no test coverage detected
searching dependent graphs…