1.0.2 • Published 2 years ago

numbers-to-words-pl v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Numbers To Words PL

This code convert integers into words representation in polish language.

Install

npm install numbers-to-words-pl

API

The code is taking number as a parameter and translating numbers with six digits max.

const convert = require('NumbersToWordsPL');
convert(21); // => “dwadzieścia jeden”
convert(389); // => “trzysta osiemdziesiąt dziewięć”
convert(14573); // => “czternaście tysięcy pięćset siedemdziesiąt trzy”
convert(314159); // => “trzysta czternaście tysięcy sto pięćdziesiąt dziewięć”

Contributions, Comments and Bugs

Contributions, comments and/or bug reports are much appreciated. Open a pull request or add comments on the issues page. Thanks!