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