Skip to content

Instantly share code, notes, and snippets.

@vmussak
Last active May 23, 2018 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmussak/8bf7067fc9b91a46d554efe7591cb0a1 to your computer and use it in GitHub Desktop.
Save vmussak/8bf7067fc9b91a46d554efe7591cb0a1 to your computer and use it in GitHub Desktop.
const numero = require('numero-por-extenso');
const monetario = 5234.5;
const porcentagem = 45;
//monetário
console.log(numero.porExtenso(monetario, numero.estilo.monetario));
//porcentagem
console.log(numero.porExtenso(porcentagem, numero.estilo.porcentagem));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment