html-entities-decoder
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/html-entities-decoder package

1.0.5 • Public • Published

html-entities-decoder Version Number License download

npm install html-entities-decoder

decode all html entities

Examples

input : 1 © 2 "

ouput : 1 © 2 "

How to use

let decode = require('html-entities-decoder')
let input = '1 © 2 "'
let output = decode(input) // 1 © 2 "

or

import decode from 'html-entities-decoder';
let input = '1 © 2 "'
let output = decode(input) // 1 © 2 "

License

MIT

Thank You!!

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i html-entities-decoder

      Weekly Downloads

      1,286

      Version

      1.0.5

      License

      MIT

      Unpacked Size

      103 kB

      Total Files

      5

      Last publish

      Collaborators

      • xinglie