Const
Hidden style
// ANSI Themehidden("text") // => "\x1b[8mtext\x1b[28m" (includes reset to not hidden)`${hidden}text` // => "\x1b[8mtext" (no reset included)hidden + "text" // => "\x1b[8mtext" (no reset included)hidden.concat("text") // => "\x1b[8mtext" (no reset included) Copy
// ANSI Themehidden("text") // => "\x1b[8mtext\x1b[28m" (includes reset to not hidden)`${hidden}text` // => "\x1b[8mtext" (no reset included)hidden + "text" // => "\x1b[8mtext" (no reset included)hidden.concat("text") // => "\x1b[8mtext" (no reset included)
Hidden style