export function holidayNamesDataFileToNames()

in src/libs/transforms.ts [108:113]


export function holidayNamesDataFileToNames(file: string): string[] {
    const splitLines = (str: string) => str.split(/\r?\n/);
    const lines = splitLines(file);
    lines.shift();
    return lines;
}