Closed GHNewbiee closed 1 year ago
Can I get more information on what you mean?
Yes, sure. Please run the following js
code.
import chalk from 'chalk';
const msg = 'This text length should be 30.';
const msgLength = msg.length;
console.log(msg, "\tIndeed, it's:", msgLength);
const text = chalk.red(msg);
const textLength = text.length;
console.log(text, "\tUnfortunately, it is not; it's ", textLength, ". Why?");
Example: