Isaac 1bc2e737e3 Database encryption
Security ™️
2021-04-07 00:02:07 +01:00

4 lines
132 B
JavaScript

module.exports = {
int2hex: (int) => int.toString(16).toUpperCase(),
wait: (time) => new Promise(res => setTimeout(res, time)),
};