Using `debug` with or without `esm` produces different formatted output using `%o` or `%O`: ```bash $ DEBUG=topic node -r esm -p 'require("debug")("topic")("out: %o", { foo: "?date=2020-01-29T14%3A24%3A44.806Z" })' topic out: { foo: '?date=2020-01-29T14undefinedA24undefinedA44.806Z' } +0ms undefined ``` whereas the following correctly renders ```bash $ DEBUG=topic node -p 'require("debug")("topic")("out: %o", { foo: "?date=2020-01-29T14%3A24%3A44.806Z" })' topic out: { foo: '?date=2020-01-29T14%3A24%3A44.806Z' } +0ms undefined ```