Const
Underline style
// ANSI Themeunderline("text") // => "\x1b[4mtext\x1b[24m" (includes reset to not underline)`${underline}text` // => "\x1b[4mtext" (no reset included)underline + "text" // => "\x1b[4mtext" (no reset included)underline.concat("text") // => "\x1b[4mtext" (no reset included) Copy
// ANSI Themeunderline("text") // => "\x1b[4mtext\x1b[24m" (includes reset to not underline)`${underline}text` // => "\x1b[4mtext" (no reset included)underline + "text" // => "\x1b[4mtext" (no reset included)underline.concat("text") // => "\x1b[4mtext" (no reset included)
Underline style