# khaan

> Word elongator

Latest version **0.1.0** (published 2015-12-15) · ISC license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2015-12-15 |
| First published | 2015-12-15 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Douglas Gardner |
| Maintainers | zuzak |
| Keywords | elongate, khan, vowel |

## Links

- npm: https://www.npmjs.com/package/khaan
- Repository: https://github.com/zuzak/node-khaan
- Issues: https://github.com/zuzak/node-khaan/issues
- npm.io page: https://npm.io/package/khaan

## Dependencies (1)

- [is-vowel](https://npm.io/package/is-vowel.md) ^1.2.0

## Recent versions

- 0.1.0 (latest) — 2015-12-15
- 0.0.2 — 2015-12-15
- 0.0.1 — 2015-12-15

## README

# node-khan
Elongates words dramatically.

## Usage
```js
var khan = require( 'khaan' );
console.log( khaan.khan() );
```

You can elongate words:
```js
khan.elongate( 'banana', 3 );
// 'baaanana'

khan.elongate( 'banana', 5 );
// 'baaaaanana'
```

Or use the internal function to split a string at vowels:
```js
khan.splitAtVowels( 'antelope' );
// [ 'ant', 'el', 'op', 'e' ]
```

as well as just uppercase and exclaim:
```js
khan.khan();
// 'KHAAAAAN!'
```

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