(key: string)
| 2 | type Path = string[]; |
| 3 | |
| 4 | export const escapeKey = (key: string) => |
| 5 | key.replace(/\\/g, '\\\\').replace(/\./g, '\\.'); |
| 6 | |
| 7 | export const stringifyPath = (path: Path): StringifiedPath => |
| 8 | path |
no outgoing calls
no test coverage detected
searching dependent graphs…