https://github.com/bukinoshita/is-vogal
Check if letter is a vowel
https://github.com/bukinoshita/is-vogal
check checker letter vogal vowel
Last synced: 2 months ago
JSON representation
Check if letter is a vowel
- Host: GitHub
- URL: https://github.com/bukinoshita/is-vogal
- Owner: bukinoshita
- License: mit
- Created: 2017-09-05T20:19:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-01-23T11:54:44.000Z (almost 5 years ago)
- Last Synced: 2025-09-19T05:02:21.127Z (2 months ago)
- Topics: check, checker, letter, vogal, vowel
- Language: JavaScript
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# is-vogal [](https://travis-ci.org/bukinoshita/is-vogal)
> Check if letter is a vowel
Different from [is-vowel](https://www.npmjs.com/package/is-vowel), `is-vogal` normalizes the letter before checking. Eg: `á` normalizes to `a`.
## Install
```bash
$ yarn add is-vogal
```
## Usage
```js
const isVogal = require('is-vogal')
isVogal('a')
// => true
isVogal('ã')
// => true
isVogal('p')
// => false
```
## API
### isVogal(input)
Returns a `boolean`
#### input
Type: `string`
Required
Letter to be checked
## License
MIT © [Bu Kinoshita](https://bukinoshita.io)