| 2 | |
| 3 | module.exports = function (JSDOM) { |
| 4 | class StringWrapper { |
| 5 | constructor(s) { |
| 6 | this.s = s; |
| 7 | } |
| 8 | |
| 9 | toString() { |
| 10 | return this.s; |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | function loadDOMPurify( |
| 15 | assert, |
nothing calls this directly
no outgoing calls
no test coverage detected