1.0.5 • Published 2 months ago

html-entities-decoder v1.0.5

Weekly downloads
103
License
MIT
Repository
github
Last release
2 months ago

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!!