Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

is-vowel-word

coolbeans8ISC2.0.0

checks and retruns True if the given word contains any of the VOWEL character other wise it reurns false

vowel

readme

is-vowel-word

A Node.js package that checks whether a given string contains a VOWEL or not. A basic package for an npm publish tutorial.

Usage

First, install the package using npm:

npm install is-vowel-word --save

Then, require the package and use it like so:

var isVowelWord = require('is-vowel-word');

console.log(isVowelWord("")); // false
console.log(isVowelWord(null)); // false
console.log(isVowelWord("ant")); // true
console.log(isVowelWord("mnm")); // false
console.log(isVowelWord("Hello")); // true

License

Apache 2.0