-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Vkozulya kakoy feature #1
base: master
Are you sure you want to change the base?
Conversation
const getKakoy = (userId, date) => { | ||
const normalizedDate = new Date(date.setHours(0, 0, 0, 0)); | ||
const seed = userId + Math.round(normalizedDate.getTime() / 1e7); | ||
const random = new Random(seed).next(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ты каждый раз инициируешь новый инстанс рандома? Зачем?
}); | ||
|
||
bot.command("hist", ({ message, reply }) => { | ||
const answer = Array(HISTORY_DAYS_COUNT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Интересные отступы
"докладывающий", | ||
"пиарящий", | ||
"нативный", | ||
"undefined", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
мб вместо undefined — is not defined
и ещё мб function is not a function
или просто undefined и null оставить
No description provided.