# num-to-word-ru

> contains some for converting a number to russian words

Latest version **1.0.2** (published 2017-12-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install num-to-word-ru
pnpm add num-to-word-ru
yarn add num-to-word-ru
bun add num-to-word-ru
```

## 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.2 |
| Published | 2017-12-06 |
| First published | 2017-12-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Ismail Saleekh |
| Maintainers | ismailsaleekh |
| Keywords | converter, number, russian, string, tool, word |

## Links

- npm: https://www.npmjs.com/package/num-to-word-ru
- Repository: https://github.com/ismailsaleekh/num-to-word-ru
- Homepage: https://github.com/ismailsaleekh/num-to-word-ru#readme
- Issues: https://github.com/ismailsaleekh/num-to-word-ru/issues
- npm.io page: https://npm.io/package/num-to-word-ru

## Alternatives

- [random-seedable](https://npm.io/package/random-seedable.md) — 27.9K weekly downloads
- [n2words](https://npm.io/package/n2words.md) — 22.2K weekly downloads
- [@stdlib/math-base-special-factorialln](https://npm.io/package/@stdlib/math-base-special-factorialln.md) — 5.7K weekly downloads
- [@stdlib/math-base-special-abs2](https://npm.io/package/@stdlib/math-base-special-abs2.md) — 1.7K weekly downloads
- [commons-math-interpolation](https://npm.io/package/commons-math-interpolation.md) — 1.4K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2017-12-06
- 1.0.1 — 2017-12-02
- 1.0.0 — 2017-12-01

## README

# Number To Words
Contains a method to Words, that converts number to russian words.

### Install
`npm install num-to-word-ru`


### API

#### `toWords(number)`
Converts an integer into words.
If number is decimal, the decimals will be removed.
```js
var toWord = require('num-to-word-ru');
toWord.toWords(13); // => “тринадцать”

// Negative numbers:
toWord.toWords(-3); // => “минус три”

// Large numbers:
converter.toWords(123456789); // => “сто двадцать-три миллиона, четыреста пятьдесят-шесть тысяч, семьсот восемьдесят-девять”
```


### Contributions, Comments and Bugs
Contributions, comments and/or bug reports are much appreciated. Open a pull request or add comments on the
[issues page](https://github.com/ismailsaleekh/num-to-word-ru/issues). Thanks!

### Upcoming Releases
Converting a number to words (Ordinal), any kind of suggestions are appreciated.


##### 1.0.0
- Initial release

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