1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-06 02:26:04 +02:00
Files
misskey/src/common/user/parse-acct.ts
2018-03-27 23:51:21 +09:00

5 lines
128 B
TypeScript

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