Const
Crossed out / Strikethrough style
// ANSI Themestrikethrough("text") // => "\x1b[9mtext\x1b[29m" (includes reset to not strikethrough)`${strikethrough}text` // => "\x1b[9mtext" (no reset included)strikethrough + "text" // => "\x1b[9mtext" (no reset included)strikethrough.concat("text") // => "\x1b[9mtext" (no reset included) Copy
// ANSI Themestrikethrough("text") // => "\x1b[9mtext\x1b[29m" (includes reset to not strikethrough)`${strikethrough}text` // => "\x1b[9mtext" (no reset included)strikethrough + "text" // => "\x1b[9mtext" (no reset included)strikethrough.concat("text") // => "\x1b[9mtext" (no reset included)
Crossed out / Strikethrough style