All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scripts.node_modules.vue.src.compiler.parser.entity-decoder.js Maven / Gradle / Ivy

The newest version!
/* @flow */

let decoder

export default {
  decode (html: string): string {
    decoder = decoder || document.createElement('div')
    decoder.innerHTML = html
    return decoder.textContent
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy