cyb/src/utils/emoji.ts

export function checkIsEmoji(emoji: string): boolean {
  // improve
  return emoji.length < 3;
}

Neighbours