We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const removeAccents = require('remove-accents'); console.log( removeAccents('ÀÁÂÃÄÅ') ); // AAAAAA console.log( removeAccents('Capture d’écran 2018-06-05 à 10.09.54.png') ); // Capture d’écran 2018-06-05 à 10.09.54.png
The text was updated successfully, but these errors were encountered:
hmm, looks like I have to call .normalize('NFC') on the string first.
.normalize('NFC')
Sorry, something went wrong.
.normalize not supported by IE
.normalize
Same for me,
input: Screen ö Shot 2018-09-20 at 11.09.57.png ouput: Screen ö Shot 2018-09-20 at 11.09.57.png
Screen ö Shot 2018-09-20 at 11.09.57.png
https://caniuse.com/#search=normalize
No branches or pull requests
The text was updated successfully, but these errors were encountered: