Plato on Github
Report Home
node_modules/sax/test/issue-84.js
Maintainability
62.35
Lines of code
12
Difficulty
3.80
Estimated Errors
0.10
Function weight
By Complexity
By SLOC
// https://github.com/isaacs/sax-js/issues/49 require(__dirname).test ( { xml : "<?has unbalanced \"quotes?><xml>body</xml>" , expect : [ [ "processinginstruction", { name: "has", body: "unbalanced \"quotes" } ], [ "opentag", { name: "xml", attributes: {}, isSelfClosing: false } ] , [ "text", "body" ] , [ "closetag", "xml" ] ] , strict : false , opt : { lowercasetags: true, noscript: true } } )