type _Escape = S extends `${infer H}${infer T}` ? E extends true ? _Escape : H extends '\\' ? _Escape : _Escape : Acc; /** * escapes unescaped characters `C` in string `S` * * @warning haven't tested if this works with the `\` character. it probably doesnt. * * @since 0.0.2 */ export type Escape = _Escape; export {}; //# sourceMappingURL=escape.d.ts.map