Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 57x 19x 1x 19x 3x 3x 16x 16x | /* eslint-disable no-restricted-globals */ let decoder: HTMLDivElement export function decodeHtmlBrowser(raw: string, asAttr = false): string { if (!decoder) { decoder = document.createElement('div') } if (asAttr) { decoder.innerHTML = `<div foo="${raw.replace(/"/g, '"')}">` return decoder.children[0].getAttribute('foo') as string } else { decoder.innerHTML = raw return decoder.textContent as string } } |