4 lines
124 B
TypeScript
4 lines
124 B
TypeScript
![]() |
export const parseUsername = (rawUsername: String) => {
|
||
|
const splitted = rawUsername.split('!')
|
||
|
return splitted[0]
|
||
|
}
|