This repo is created to convert all types of escaped html into the original one, including Hex/Dec/Entity.
npm install unescape-alltypes-htmlThis repo is created to convert all types of escaped html into the original one, including Hex/Dec/Entity.
See sidehtmlentity for details.
unescape-html is just a reverse of escape-html, and it fails to convert some types.
`` sh
$ yarn add unescape-alltypes-html
Usage
` javascript
import unescape from 'unescape-alltypes-html'unescape('& & &') //'& & &'
``