Created
October 12, 2017 00:23
-
-
Save tosipaulo/f8f0b14063cb293bcb711558a9feb25b to your computer and use it in GitHub Desktop.
URL amigável
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const urlFriendlyHandler = (string) => | |
| string.toLowerCase().trim() | |
| .replace(/[áàãâä]/g, "a") | |
| .replace(/[éè?êë]/g, "e") | |
| .replace(/[íìiîï]/g, "i") | |
| .replace(/[óòõôö]/g, "o") | |
| .replace(/[úùuûü]/g, "u") | |
| .replace(/ç/g, "c") | |
| .replace(/(\ |_)+/, " ") | |
| .replace(/(^-+|-+$)/, "") | |
| .replace(/[^a-z0-9]+/g, "-"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment