2020-09-02 10:54:37 +01:00
|
|
|
module.exports = function(username) {
|
2022-01-04 03:39:53 +00:00
|
|
|
for (let i = 0; i < global.userKeys.length; i++) {
|
|
|
|
if (global.users[global.userKeys[i]].username == username)
|
|
|
|
return global.users[global.userKeys[i]];
|
|
|
|
}
|
2020-09-02 10:54:37 +01:00
|
|
|
}
|