2 lines
95 B
JavaScript
2 lines
95 B
JavaScript
const removeNonASCII = str => str.replace(/[^\x20-\x7E]/g, '');
|
|
module.exports = removeNonASCII |