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