module.exports = removeVowels = (str, repl = '') => str.replace(/[aeiou]/gi,repl);