Holidays Command

This commit is contained in:
Daniel Odendahl Jr
2018-02-22 23:39:17 +00:00
parent fd108da04a
commit 1070543e20
4 changed files with 52 additions and 7 deletions
-4
View File
@@ -51,10 +51,6 @@ class Util {
return arr;
}
static formatNumber(number, dollar = false) {
return `${dollar ? '$' : ''}${number.toLocaleString('en-US', { maximumFractionDigits: 2 })}`;
}
static cleanXML(text) {
return text
.replace(/<br \/>/g, '')