Travis build: 1502 [cron]

This commit is contained in:
30secondsofcode
2018-01-31 20:16:39 +00:00
parent cf5ab48aba
commit 71037a2233
7 changed files with 26 additions and 12 deletions

View File

@ -1,2 +1,3 @@
const toCurrency = (n, curr, LanguageFormat = undefined) => new Intl.NumberFormat(LanguageFormat, { style: 'currency', currency: curr }).format(n);
const toCurrency = (n, curr, LanguageFormat = undefined) =>
Intl.NumberFormat(LanguageFormat, { style: 'currency', currency: curr }).format(n);
module.exports = toCurrency