npm install html-entities-decoder
decode all html entities
input : 1 © 2 "
ouput : 1 © 2 "
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 "
MIT
Thank You!!