Plato on Github
Report Home
node_modules/sax/test/attribute-name.js
Maintainability
54.20
Lines of code
33
Difficulty
5.27
Estimated Errors
0.16
Function weight
By Complexity
By SLOC
require(__dirname).test( { xml: "<root length='12345'></root>" , expect: [ ["attribute", { name: "length" , value: "12345" , prefix: "" , local: "length" , uri: "" }] , ["opentag", { name: "root" , prefix: "" , local: "root" , uri: "" , attributes: { length: { name: "length" , value: "12345" , prefix: "" , local: "length" , uri: "" } } , ns: {} , isSelfClosing: false }] , ["closetag", "root"] ] , strict: true , opt: { xmlns: true } } )