Skip to content

Instantly share code, notes, and snippets.

@tomhodgins
Created November 12, 2019 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomhodgins/8f689b9aad3d1a378fca6108b0281aff to your computer and use it in GitHub Desktop.
Save tomhodgins/8f689b9aad3d1a378fca6108b0281aff to your computer and use it in GitHub Desktop.
':root'
.split('')
.map(char =>
'.#[]:'.includes(char)
? char
: `\\${char.charCodeAt(0).toString(16)}`
)
.join('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment