Const
Log paint policy for plain text output Ignores all color information and returns unformatted text Useful for logging, file output, or environments without color support
const plain = log_policy.wrap('#FF5733', 'Hello World');console.log(plain); // Outputs 'Hello World' (no formatting) Copy
const plain = log_policy.wrap('#FF5733', 'Hello World');console.log(plain); // Outputs 'Hello World' (no formatting)
Log paint policy for plain text output Ignores all color information and returns unformatted text Useful for logging, file output, or environments without color support