module.exports = countVowels = str => (str.match(/[aeiou]/gi) || []).length;