export class ExportHelper { static getFileName(prefix: string = null, extension = "csv"): string { const now = new Date(); const dateString = now.getFullYear() + "" + this.padNumber(now.getMonth() + 1, 2) + "" + this.padNumber(now.getDate(), 2) + this.padNumber(now.getHours(), 2) + "" + this.padNumber(now.getMinutes(), 2) + this.padNumber(now.getSeconds(), 2); return "bitwarden" + (prefix ? "_" + prefix : "") + "_export_" + dateString + "." + extension; } private static padNumber(num: number, width: number, padCharacter = "0"): string { const numString = num.toString(); return numString.length >= width ? numString : new Array(width - numString.length + 1).join(padCharacter) + numString; } }