(name: PropertyKey)
| 190 | * @internal |
| 191 | */ |
| 192 | export function formatPropertyKey(name: PropertyKey): string { |
| 193 | return typeof name === "string" ? JSON.stringify(name) : String(name) |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Formats an array of property keys as a bracket-notation path string. |
no test coverage detected