0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2025-01-20 19:32:29 -05:00
safetwitch/server/util/scraping/chat/utils.ts

4 lines
No EOL
124 B
TypeScript

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