(obj: any)
| 15 | const ObjectDefineProperty = Object.defineProperty; |
| 16 | |
| 17 | function readableObjectToString(obj: any) { |
| 18 | if (obj && obj.toString === Object.prototype.toString) { |
| 19 | const className = obj.constructor && obj.constructor.name; |
| 20 | return (className ? className : '') + ': ' + JSON.stringify(obj); |
| 21 | } |
| 22 | |
| 23 | return obj ? obj.toString() : Object.prototype.toString.call(obj); |
| 24 | } |
| 25 | |
| 26 | const __symbol__ = api.symbol; |
| 27 | const _uncaughtPromiseErrors: UncaughtPromiseError[] = []; |
no test coverage detected
searching dependent graphs…