Skip to content

Instantly share code, notes, and snippets.

@bignimbus
Created September 9, 2016 21:19
Show Gist options
  • Save bignimbus/a55ec40fa37bd657c12e097b7a6fdc99 to your computer and use it in GitHub Desktop.
Save bignimbus/a55ec40fa37bd657c12e097b7a6fdc99 to your computer and use it in GitHub Desktop.
'aabbbc' -> 'a2b3c1'
export const gatherChars = str => str
.match(/(.)\1*/g)
.map(s => `${s.charAt(0)}${s.length}`)
.join('');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment