* @target web * @partial
(val: unknown)
| 150 | * @partial |
| 151 | */ |
| 152 | public static getConstructorName(val: unknown) { |
| 153 | const withConstructor = val as object; |
| 154 | return (typeof withConstructor.constructor === 'function' && withConstructor.constructor.name) || 'Object'; |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * @target web |