Skip to content

Commit 538cda7

Browse files
committed
refactor: kaomoji selection logic in bin.ts
1 parent e7ca7df commit 538cda7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/bin.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,10 @@ function logRoutes(data: Data) {
101101

102102
const kaomojis = ['♡⸜(˶˃ ᵕ ˂˶)⸝♡', '♡( ◡‿◡ )', '( ˶ˆ ᗜ ˆ˵ )', '(˶ᵔ ᵕ ᵔ˶)']
103103

104-
// Get system current language
104+
function randomItem(items: string[]): string {
105+
const index = Math.floor(Math.random() * items.length)
106+
return items.at(index) ?? ''
107+
}
105108

106109
app.listen(port, () => {
107110
console.log(
@@ -110,7 +113,7 @@ app.listen(port, () => {
110113
chalk.gray('Press CTRL-C to stop'),
111114
chalk.gray(`Watching ${file}...`),
112115
'',
113-
chalk.magenta(kaomojis[Math.floor(Math.random() * kaomojis.length)]),
116+
chalk.magenta(randomItem(kaomojis)),
114117
'',
115118
chalk.bold('Index:'),
116119
chalk.gray(`http://localhost:${port}/`),

0 commit comments

Comments
 (0)