mirror of https://github.com/vuejs/core.git
7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
|
let decoder: HTMLDivElement
|
||
|
|
||
|
export function decodeHtmlBrowser(raw: string): string {
|
||
|
;(decoder || (decoder = document.createElement('div'))).innerHTML = raw
|
||
|
return decoder.textContent as string
|
||
|
}
|