(value)
| 6938 | customObjectFormatters = customObjectFormatters || [] |
| 6939 | |
| 6940 | const pp = function(value) { |
| 6941 | const prettyPrinter = new SinglePrettyPrintRun(customObjectFormatters, pp) |
| 6942 | prettyPrinter.format(value) |
| 6943 | return prettyPrinter.stringParts.join("") |
| 6944 | } |
| 6945 | |
| 6946 | pp.customFormat_ = function(value) { |
| 6947 | return customFormat(value, customObjectFormatters) |
no test coverage detected