Const
Blink style
// ANSI Themeblink("text") // => "\x1b[5mtext\x1b[25m" (includes reset to not blink)`${blink}text` // => "\x1b[5mtext" (no reset included)blink + "text" // => "\x1b[5mtext" (no reset included)blink.concat("text") // => "\x1b[5mtext" (no reset included) Copy
// ANSI Themeblink("text") // => "\x1b[5mtext\x1b[25m" (includes reset to not blink)`${blink}text` // => "\x1b[5mtext" (no reset included)blink + "text" // => "\x1b[5mtext" (no reset included)blink.concat("text") // => "\x1b[5mtext" (no reset included)
Blink style