0.0.2 • Published 4 years ago

textfy v0.0.2

Weekly downloads
42
License
ISC
Repository
github
Last release
4 years ago

��# GETTING STARTED

This is a simple project written in typescript for converting numbers to plain text.

You can clone and test it and give us your feedback, be aware that your opinion is important improve this tool. Also you may contribute to help the project growing.

HOW TO USE THE PACKAGE

Simple instalation:

npm i textfy

Then import it:

const textFy=require('textfy')

Usage

console.log(textFy.getText(2000));

Result

//Result: DOIS MIL

const textfy=require('textfy');

var numb = textfy.getText(5000);
console.log(numb)