unvowel

1.1.0 • Public • Published

unvowel

NPM

build status

Works by removing vowels from a string.

Good for generating rememberable passwords.

example

  // on the command line
  $ unvowel -'good yuki' -j
  $ gdyk
  $ unvowel -'good yuki'
  $ gd yk
  // programmatically
 
  var unvowel = require('unvowel');
 
  console.log(unvowel.parse('good yuki')); // gd yk
  console.log(unvowel.parse('good yuki', true)); // gdyk

API.

unvowel.parse(str#string, join#bool)

Return a string str with all the vowels removed.

join controls the option to either join the final output or not. By default its value is false.

install

  $ npm install unvowel
  // globally
  $ npm install -g unvowel

license

MIT.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.0
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.1.0
    0
  • 1.0.2
    0
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i unvowel

Weekly Downloads

0

Version

1.1.0

License

MIT

Last publish

Collaborators

  • lestoni