Skip to content

Instantly share code, notes, and snippets.

@inodaf
Created August 23, 2021 16:43
Show Gist options
  • Save inodaf/31e4e887df4844c79f2f37196c296089 to your computer and use it in GitHub Desktop.
Save inodaf/31e4e887df4844c79f2f37196c296089 to your computer and use it in GitHub Desktop.
function textToSlackEmoji(text: string): string {
return text.split('').reduce((phrase, char) => {
if (char) return phrase + `:alphabet-white-${char}:`
else return phrase + ' '
}, '').replaceAll(':alphabet-white- :', ' ')
}
textToSlackEmoji('ladies and gentleman the weekend')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment