1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 15:15:45 +02:00
Files
misskey/src/acct/parse.ts
syuilo 80e5645a84 wip
2018-06-18 09:54:53 +09:00

5 lines
138 B
TypeScript

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