mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2025-02-07 12:18:13 -05:00
4 lines
No EOL
124 B
TypeScript
4 lines
No EOL
124 B
TypeScript
export const parseUsername = (rawUsername: String) => {
|
|
const splitted = rawUsername.split('!')
|
|
return splitted[0]
|
|
} |