We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ca7df commit 538cda7Copy full SHA for 538cda7
src/bin.ts
@@ -101,7 +101,10 @@ function logRoutes(data: Data) {
101
102
const kaomojis = ['♡⸜(˶˃ ᵕ ˂˶)⸝♡', '♡( ◡‿◡ )', '( ˶ˆ ᗜ ˆ˵ )', '(˶ᵔ ᵕ ᵔ˶)']
103
104
-// Get system current language
+function randomItem(items: string[]): string {
105
+ const index = Math.floor(Math.random() * items.length)
106
+ return items.at(index) ?? ''
107
+}
108
109
app.listen(port, () => {
110
console.log(
@@ -110,7 +113,7 @@ app.listen(port, () => {
113
chalk.gray('Press CTRL-C to stop'),
111
114
chalk.gray(`Watching ${file}...`),
112
115
'',
- chalk.magenta(kaomojis[Math.floor(Math.random() * kaomojis.length)]),
116
+ chalk.magenta(randomItem(kaomojis)),
117
118
chalk.bold('Index:'),
119
chalk.gray(`http://localhost:${port}/`),
0 commit comments