Files
2025-04-13 17:31:30 +02:00

18 lines
290 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export function numberToEmoji(num) {
const map = {
0: "0⃣",
1: "1⃣",
2: "2⃣",
3: "3⃣",
4: "4⃣",
5: "5⃣",
6: "6⃣",
7: "7⃣",
8: "8⃣",
9: "9⃣",
10: "🔟"
};
return map[num] || String(num);
}