Open
Description
What is the feature you are proposing?
Currently the color status coding is set with this:
const isNoColor = typeof Deno?.noColor === "boolean" ? Deno.noColor : process !== void 0 ? "NO_COLOR" in process?.env : false;
Can something be added to check it this is running in a cloudflare worker to disable coloring?
My logs spit out �[32m200�[0m 923ms
, which is terrible.
The c.env
could be passed in and if NO_COLOR === true
then we are set.