const x = "Amanda’s normally placid temperament ��新道 reasserted itself."
const y = `x.replace(/[\u{0080}-\u{FFFF}]/gu, '');`
console.log(y); // Amandas normally placid temperament reasserted itself.
This removes the non-ASCII characters(desired), along with the apostrophe too (not desired).
How can I modify the regex such that it does not remove the following:
U+0022 - Apostrophe
U+2019 - Right single quotation mark