1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 14:16:03 +02:00
Files
misskey/src/acct/parse.ts
2018-04-02 13:44:32 +09:00

5 lines
128 B
TypeScript

export default acct => {
const splitted = acct.split('@', 2);
return { username: splitted[0], host: splitted[1] || null };
};