is-vowel-word

2.0.0 • Public • Published

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

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i is-vowel-word

      Weekly Downloads

      0

      Version

      2.0.0

      License

      ISC

      Last publish

      Collaborators

      • coolbeans