mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-03-20 15:19:06 +01:00
6 lines
197 B
JavaScript
6 lines
197 B
JavaScript
export default function inspectSymbol(value) {
|
|
if ('description' in Symbol.prototype) {
|
|
return value.description ? `Symbol(${value.description})` : 'Symbol()'
|
|
}
|
|
return value.toString()
|
|
}
|