iceshrimp/src/misc/acct/parse.ts

5 lines
138 B
TypeScript
Raw Normal View History

2018-06-18 00:54:53 +00:00
export default (acct: string) => {
2018-03-27 07:51:12 +00:00
const splitted = acct.split('@', 2);
return { username: splitted[0], host: splitted[1] || null };
};