diff options
-rw-r--r-- | src/lib/console.ts | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/lib/console.ts b/src/lib/console.ts index 313fd0a..82562cd 100644 --- a/src/lib/console.ts +++ b/src/lib/console.ts @@ -173,19 +173,6 @@ font-family: "Courier New", Courier, monospace; }), ]); console.debug( - ...strs[ - dev - ? Math.floor(Math.random() * strs.length) - : (Date.now() / - // millis in a second - 1000 / - // secs in a min - 60 / - // mins in an hour - 60 / - // hours in a day - 24) % - strs.length - ], + ...strs[Math.floor(Math.random() * strs.length)], ); } |