Const
Reset bth the Normal color and style with all attributes off.
// ANSI Themereset("text") // => "\x1b[0mtext\x1b[0m" (includes reset)`${reset}text` // => "\x1b[0mtext" (no reset included)reset + "text" // => "\x1b[0mtext" (no reset included)reset.concat("text") // => "\x1b[0mtext" (no reset included) Copy
// ANSI Themereset("text") // => "\x1b[0mtext\x1b[0m" (includes reset)`${reset}text` // => "\x1b[0mtext" (no reset included)reset + "text" // => "\x1b[0mtext" (no reset included)reset.concat("text") // => "\x1b[0mtext" (no reset included)
Reset bth the Normal color and style with all attributes off.