Skip to content

Instantly share code, notes, and snippets.

@robinpokorny
Created July 10, 2024 10:13
Show Gist options
  • Save robinpokorny/795f9e92f1d48e20acde3f985dfe47f8 to your computer and use it in GitHub Desktop.
Save robinpokorny/795f9e92f1d48e20acde3f985dfe47f8 to your computer and use it in GitHub Desktop.
Count repeated emojis (badges) with subscript
const subscriptNumber = (n) => n
.toString(10)
.split``
.map((i) => Number.parseInt(i, 10))
.map((i) => String.fromCharCode(0x2080 + i))
.join``
const countBadges = (badges) => Array
.from(
[...new Intl.Segmenter().segment(badges)]
.map((x) => x.segment)
.reduce(
(freq, badge) => freq.set(badge, (freq.get(badge) ?? 0) + 1),
new Map(),
)
).flatMap(
([badge, count]) => [badge, count === 1 ? `` : subscriptNumber(count)]
)
.join``
countBadges(`πŸ₯·πŸ₯·πŸ₯·πŸ‘¨πŸ‘¨πŸ‘¨πŸ‘¨πŸ‘¨πŸ‘¨πŸŽ€πŸ§‘β€πŸ§‘β€πŸ§’β€πŸ§’πŸ§‘β€πŸ§‘β€πŸ§’β€πŸ§’πŸ‘¨πŸ‘¨πŸ‘¨πŸ‘¨πŸ‘¨πŸ‘¨`)
// -> `πŸ₯·β‚ƒπŸ‘¨β‚β‚‚πŸŽ€πŸ§‘β€πŸ§‘β€πŸ§’β€πŸ§’β‚‚`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment