(path: ReadonlyArray<PropertyKey>)
| 199 | * @internal |
| 200 | */ |
| 201 | export function formatPath(path: ReadonlyArray<PropertyKey>): string { |
| 202 | return path.map((key) => `[${formatPropertyKey(key)}]`).join("") |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Formats a `Date` as an ISO 8601 string, returning `"Invalid Date"` for |
no test coverage detected