(s, ...o)
| 20248 | .replace(/'/g, ''') |
| 20249 | } |
| 20250 | function inherit(s, ...o) { |
| 20251 | const i = Object.create(null) |
| 20252 | for (const o in s) i[o] = s[o] |
| 20253 | return ( |
| 20254 | o.forEach(function (s) { |
| 20255 | for (const o in s) i[o] = s[o] |
| 20256 | }), |
| 20257 | i |
| 20258 | ) |
| 20259 | } |
| 20260 | const emitsWrappingTags = (s) => !!s.kind |
| 20261 | class HTMLRenderer { |
| 20262 | constructor(s, o) { |
no test coverage detected