Package Exports
- remove-accents
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (remove-accents) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
remove-accents
Removes the accents from a string, converting them to their corresponding non-accented ASCII characters.
npm install remove-accents
About
An easy to use solution for converting all accented characters to their corresponding non-accented ASCII characters.
Syntax
removeAccents(inputString)
inputString
The string that you wish to remove accents from.
Usage
Call removeAccents()
by passing the string you wish to remove accents from, and you will get the non-accented string as result.
var input = 'ÀÁÂÃÄÅ';
var output = removeAccents(input);
console.log(output); // AAAAAA
License
MIT