(arr)
| 29 | utility: ['📂', '🔧', '⚙️', '🛠️'] |
| 30 | }; |
| 31 | function getRandomEmoji(arr) { |
| 32 | return arr[Math.floor(Math.random() * arr.length)]; |
| 33 | } |
| 34 | function getCategoryEmoji(category) { |
| 35 | const emojis = categoryEmojis[category.toLowerCase()] || ['📂', '📁', '🗂️', '📋']; |
| 36 | return getRandomEmoji(emojis); |
no outgoing calls
no test coverage detected