Fix quotes

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-20 23:29:39 +03:00
parent caa67e2a49
commit fd68c221da
15 changed files with 22 additions and 21 deletions

View File

@ -9,7 +9,7 @@ Removes accents from strings.
- Use `String.prototype.replace()` to replace diacritical marks in the given Unicode range by empty strings.
```js
const removeAccents = str => str.normalize("NFD").replace(/[\u0300-\u036f]/g, "");
const removeAccents = str => str.normalize('NFD').replace(/[\u0300-\u036f]/g, '');
```
```js