# digits2word

> This program converts digits to words

Latest version **1.0.3** (published 2019-09-26) · MIT license · 0 weekly downloads

## Install

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

## 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.0.3 |
| Published | 2019-09-26 |
| First published | 2019-09-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 8.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Ajayi Jeremiah |
| Maintainers | lord-jerry |
| Keywords | digits, words, money |

## Links

- npm: https://www.npmjs.com/package/digits2word
- Homepage: https://github.com/lord-jerry/digit2word#readme
- Issues: https://github.com/lord-jerry/digit2word/issues
- npm.io page: https://npm.io/package/digits2word

## Recent versions

- 1.0.3 (latest) — 2019-09-26
- 1.0.2 — 2019-09-26
- 1.0.1 — 2019-09-25
- 1.0.0 — 2019-09-25

## README

# digit2word.js

A Javascript library for converting digits to word.

## Description

Most times when trying to send money with mobile bank apps or web apps, 
we do make mistakes of sending more than we intended to.
For example sending 10000.00 instead of 1000.00.

So to address this issue i wrote this program to help convert digits to their word form.

## Installation

Installation uses the [npm](http://npmjs.org/) package manager.  Just type the following command after installing npm.

    npm install digit2word

## Example

```javascript
const digit2word = require('digit2word');

// Convert digit to word
const output = digit2word.convert(546789);
console.log(output);

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