decode all html entities
npm install html-entities-decoderdecode all html entities
js
let decode = require('html-entities-decoder')
let input = '1 © 2 "'
let output = decode(input) // 1 © 2 "
`or
`js
import decode from 'html-entities-decoder';
let input = '1 © 2 "'
let output = decode(input) // 1 © 2 "
``Thank You!!