mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-04-04 20:31:42 +03:00
4 lines
132 B
JavaScript
4 lines
132 B
JavaScript
module.exports = {
|
|
int2hex: (int) => int.toString(16).toUpperCase(),
|
|
wait: (time) => new Promise(res => setTimeout(res, time)),
|
|
}; |