paricafe/src/misc/acct/parse.ts

6 lines
188 B
TypeScript
Raw Normal View History

2018-06-17 19:54:53 -05:00
export default (acct: string) => {
if (acct.startsWith('@')) acct = acct.substr(1);
2018-03-27 02:51:12 -05:00
const splitted = acct.split('@', 2);
return { username: splitted[0], host: splitted[1] || null };
};