(value, constructor, tag)
| 1077 | } |
| 1078 | |
| 1079 | function getCtxStyle(value, constructor, tag) { |
| 1080 | let fallback = ''; |
| 1081 | if (constructor === null) { |
| 1082 | fallback = internalGetConstructorName(value); |
| 1083 | if (fallback === tag) { |
| 1084 | fallback = 'Object'; |
| 1085 | } |
| 1086 | } |
| 1087 | return getPrefix(constructor, tag, fallback); |
| 1088 | } |
| 1089 | |
| 1090 | function formatProxy(ctx, proxy, recurseTimes) { |
| 1091 | if (recurseTimes > ctx.depth && ctx.depth !== null) { |