Skip to content

Instantly share code, notes, and snippets.

View allysonsilva's full-sized avatar
🌎
Working from anywhere

Alyson Silva allysonsilva

🌎
Working from anywhere
View GitHub Profile
@allysonsilva
allysonsilva / Docker-Commands.md
Last active May 21, 2018 00:11
Docker Commands 😀

Docker Commands

Install

docker run -v $(pwd):/usr/src/app -w /usr/src/app node:9 npm install
@allysonsilva
allysonsilva / native-js-formatter-currency.js
Last active June 28, 2018 14:05
📢 Native JavaScript Currency [NumberFormat]
let formatter = new Intl.NumberFormat('pt-BR', {
style: 'currency',
currency: 'BRL',
currencyDisplay: "symbol",
minimumFractionDigits: 2,
});
formatter.format('123456.90')); // R$ 123.456,90
formatter.format('12.3456.90')); // NaN
formatter.format('12,3456.90')); // NaN