6 lines
No EOL
127 B
JavaScript
Executable file
6 lines
No EOL
127 B
JavaScript
Executable file
module.exports = function(id) {
|
|
for (let user of global.users.getIterableItems()) {
|
|
if (user.id == id)
|
|
return user;
|
|
}
|
|
} |