# unvowel

> Removes all vowels from a string

Latest version **1.1.0** (published 2016-03-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install unvowel
pnpm add unvowel
yarn add unvowel
bun add unvowel
```

Provides the command `unvowel`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2016-03-30 |
| First published | 2015-03-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Tony Mutai |
| Maintainers | lestoni |
| Keywords | vowel, password, language, generator |

## Links

- npm: https://www.npmjs.com/package/unvowel
- Repository: https://github.com/lestoni/unvowel
- Issues: https://github.com/lestoni/unvowel/issues
- npm.io page: https://npm.io/package/unvowel

## Dependencies (1)

- [commander](https://npm.io/package/commander.md) ~2.7.1

## Recent versions

- 1.1.0 (latest) — 2016-03-30
- 1.0.2 — 2015-04-27
- 1.0.1 — 2015-03-31
- 1.0.0 — 2015-03-31

## README

# unvowel

[![NPM](https://nodei.co/npm/unvowel.png?downloads=true&stars=true)](https://nodei.co/npm/unvowel/)

[![build status](https://travis-ci.org/lestoni/unvowel.png)](http://travis-ci.org/lestoni/unvowel)

Works by removing vowels from a string.

Good for generating rememberable passwords.


## example

```javascript
  // on the command line
  $ unvowel -s 'good yuki' -j
  $ gdyk
  $ unvowel -s 'good yuki'
  $ gd yk
```

```javascript
  // 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

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

## license

MIT.

---
_Source: https://npm.io/package/unvowel · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
