Skip to content

Instantly share code, notes, and snippets.

@nichoth
Last active May 4, 2026 22:32
Show Gist options
  • Select an option

  • Save nichoth/1015d00d809c2a48db6d8bc24c18eb4f to your computer and use it in GitHub Desktop.

Select an option

Save nichoth/1015d00d809c2a48db6d8bc24c18eb4f to your computer and use it in GitHub Desktop.
Some Constants, em dashes and things
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