Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 1.17 KB

README.md

File metadata and controls

32 lines (18 loc) · 1.17 KB

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)