Last active
May 4, 2026 22:32
-
-
Save nichoth/1015d00d809c2a48db6d8bc24c18eb4f to your computer and use it in GitHub Desktop.
Some Constants, em dashes and things
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
| export const EN_DASH = '\u2013' | |
| export const EM_DASH = '\u2014' | |
| export const NBSP = '\u00A0' | |
| export const ELLIPSIS = '\u2026' | |
| export const COPYRIGHT = '\u00A9' | |
| export const BULLET = '\u2022' | |
| export const AMP = '\u0026' | |
| export const LT = '\u003C' | |
| export const LTE = '\u2264' | |
| export const GT = '\u003E' | |
| export const GTE = '\u2265' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment