export const parseUsername = (rawUsername: String) => { const splitted = rawUsername.split('!') return splitted[0] }