/** * '\1\\ab\2\.3' --> '1\ab2.3' with escapeChar: '\' i.e. remove non duplicated. */ export function removeEscapeChars(s: string, escapeChar: string): string { return s; // TODO: //C:\Y\git\pm\Include\atl\atl_strings.h::removeEscapeChars() }