VitorLuizC / brazilian-values

🇧🇷 Funções de formatação, conversão e validação para valores, documentos e outras unidades usadas no Brasil. Como CEP, CNPJ, CPF, BRL (R$), datas, números etc.
MIT License
537 stars 38 forks source link

create a list formatter function (x, y e z) #7

Closed VitorLuizC closed 5 years ago

VitorLuizC commented 5 years ago

A function to format ArrayLike values into a string using commas and "e" article.

[1, 2, 3, 4] => '1, 2, 3 e 4' [1, 2] => '1 e 2' [1] => '1' [] => ''

VitorLuizC commented 5 years ago

Maybe a parser to transform brazilian list format into an Array.

VitorLuizC commented 5 years ago

Fixed on #8.