Last active
August 31, 2019 10:49
-
-
Save dmjcomdem/b0c6973fc6128f479426e4e56cc2ffe6 to your computer and use it in GitHub Desktop.
Reformat text style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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