(object)
| 20572 | ); |
| 20573 | } |
| 20574 | function objectName(object) { |
| 20575 | return Object.prototype.toString |
| 20576 | .call(object) |
| 20577 | .replace(/^\[object (.*)\]$/, function (m, p0) { |
| 20578 | return p0; |
| 20579 | }); |
| 20580 | } |
| 20581 | function describeValue(value, maxLength) { |
| 20582 | switch (typeof value) { |
| 20583 | case "string": |
no outgoing calls
no test coverage detected
searching dependent graphs…