/**
 * Converts a list of path edges to a string joined by dots ("`.`").
 *
 * @param path - List of path edges.
 *
 * @returns Paths joined by dots ("`.`").
 */
export const dotPath = (path: string[]): string => path.join(".");
