Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Last active August 31, 2019 10:49
Show Gist options
  • Save dmjcomdem/b0c6973fc6128f479426e4e56cc2ffe6 to your computer and use it in GitHub Desktop.
Save dmjcomdem/b0c6973fc6128f479426e4e56cc2ffe6 to your computer and use it in GitHub Desktop.
Reformat text style
const UNICODE_SYMBOL = {
dotted: '\u0331',
underline: '\u0332',
through: '\u0336',
}
const format = UNICODE_SYMBOL['through'];
Array.from('Sample Text', (item) => item + format ).join('') // "S̶a̶m̶p̶l̶e̶ ̶T̶e̶x̶t̶"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment