* util.inspect() implementation, which * just returns the JSON output. * * @return {Object} * @api public
()
| 28 | */ |
| 29 | |
| 30 | inspect () { |
| 31 | if (this === proto) return this |
| 32 | return this.toJSON() |
| 33 | }, |
| 34 | |
| 35 | /** |
| 36 | * Return JSON representation. |
nothing calls this directly
no test coverage detected
searching dependent graphs…