shortscale 1.0.1

Convert numbers into English words using the short scale.
Documentation

CI

Rust docs
Converts numbers into English words using the short scale.

Supports positive integers from 0 to 999_999_999_999_999_999.

Library function signature

pub fn shortscale(num: u64) -> String

Example

use shortscale::shortscale;

assert_eq!(
    shortscale(420_000_999_015),
    "four hundred and twenty billion nine hundred \
    and ninety nine thousand and fifteen"
);

For the JavaScript version see jldec/shortscale.