# streamer {get}

```lua
return function()
    local user = getUser('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end
    log('user is the streamer: ' .. user.streamer);
end
```
