(txt)
| 76 | return true; } |
| 77 | var stripQuotes = function(txt) { if (txt.startsWith("\"") && txt.endsWith("\"")) return txt.substring(1, txt.length-1); else return txt;} |
| 78 | var text = function(txt) { return document.createTextNode(stripQuotes(txt)) }; |
| 79 | var div = function() { return document.createElement("div") }; |
| 80 | var span = function(classname) { var s = document.createElement("span"); |
| 81 | if (classname) s.className = classname; |
no test coverage detected