Linted archive

This commit is contained in:
Angelos Chalaris
2018-09-15 13:52:12 +03:00
parent 6e6d390abd
commit c845c2bced
11 changed files with 77 additions and 51 deletions

View File

@ -6,7 +6,7 @@ Use `String.replace()` with a regexp to replace all vowels in `str`.
Omot `repl` to use a default value of `''`.
```js
const removeVowels = (str, repl = '') => str.replace(/[aeiou]/gi,repl);
const removeVowels = (str, repl = '') => str.replace(/[aeiou]/gi, repl);
```
```js