5 lines
88 B
TypeScript

export function normalize(fileName: string)
{
return fileName.split("\\").join("/");
}