/** * @author Martin Karkowski * @email m.karkowski@zema.de * @desc [description] */ import { replaceAll } from "./stringMethods"; export function convertPath(path: string): string { return replaceAll(path, [".", "[", ["]", ""]], "/"); }