(o: unknown)
| 2 | * https://tc39.es/ecma262/#sec-tostring |
| 3 | */ |
| 4 | export function ToString(o: unknown): string { |
| 5 | if (typeof o === 'symbol') { |
| 6 | throw TypeError('Cannot convert a Symbol value to a string') |
| 7 | } |
| 8 | return String(o) |
| 9 | } |
no outgoing calls
no test coverage detected