Binato/server/util/getUserById.js

6 lines
No EOL
127 B
JavaScript

module.exports = function(id) {
for (let user of global.users.getIterableItems()) {
if (user.id == id)
return user;
}
}