paricafe/src/misc/acct/parse.ts

6 lines
179 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-12-25 01:49:35 -06:00
const split = acct.split('@', 2);
return { username: split[0], host: split[1] || null };
2018-03-27 02:51:12 -05:00
};