ca,
};
-const format = (value: any, format: any, lng: any) => format === 'uppercase' ? value.toUpperCase() : value;
+function format(value: any, format: any, lng: any): any {
+ return format === 'uppercase' ? value.toUpperCase() : value;
+}
i18next.init({
debug: false,
const before = readmeTxt.split(open)[0];
const after = readmeTxt.split(close)[1];
-const difference = (a: Array<string>, b: Array<string>): Array<string> => a.filter(x => !b.includes(x));
+function difference(a: Array<string>, b: Array<string>): Array<string> {
+ return a.filter(x => !b.includes(x));
+}
const report =
'lang | done | missing\n' +