Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/carmonw/elm-number-to-words

Utility functions for converting numbers to its written form
https://github.com/carmonw/elm-number-to-words

elm numbers numbers-to-words

Last synced: about 2 months ago
JSON representation

Utility functions for converting numbers to its written form

Awesome Lists containing this project

README

        

# elm-number-to-words

This package provides utility functions for converting numbers to their written form.

## Installation

```
elm install carmonw/elm-number-to-words
```

## Usage

### Converting An Int To Its Written Form

```elm
import NumberToWords

NumberToWords.intToWords 1255 == "one thousand, two hundred fifty-five"
```

### Converting A Float To Its Written Form

```elm
import NumberToWords

NumberToWords.roundToWords 1232551.50 == "one million, two hundred thirty-two thousand, five hundred fifty-two"
NumberToWords.floorToWords 1255.20 == "one thousand, two hundred fifty-five"
NumberToWords.ceilingToWords 1255.20 == "one thousand, two hundred fifty-six"
```