Check if letter is a vowel
Different from is-vowel, is-vogal
normalizes the letter before checking. Eg: á
normalizes to a
.
$ yarn add is-vogal
const isVogal = require('is-vogal')
isVogal('a')
// => true
isVogal('ã')
// => true
isVogal('p')
// => false
Returns a boolean
Type: string
Required
Letter to be checked
MIT © Bu Kinoshita