MCPcopy
hub / github.com/formatjs/formatjs / ToString

Function ToString

packages/ecma262-abstract/ToString.ts:4–9  ·  view source on GitHub ↗
(o: unknown)

Source from the content-addressed store, hash-verified

2 * https://tc39.es/ecma262/#sec-tostring
3 */
4export 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}

Callers 6

formatMethod · 0.85
formatToPartsMethod · 0.85
GetStringOrBooleanOptionFunction · 0.85
GetOptionFunction · 0.85
ofMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected