Skip to content

xinglie/html-entities-decoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

decode all html entities

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published