| Current Path : /var/www/html/maiwp/node_modules/vue/src/compiler/parser/ |
| Current File : /var/www/html/maiwp/node_modules/vue/src/compiler/parser/entity-decoder.js |
/* @flow */
let decoder
export default {
decode (html: string): string {
decoder = decoder || document.createElement('div')
decoder.innerHTML = html
return decoder.textContent
}
}