misskey/src/misc/acct/parse.ts

6 lines
179 B
TypeScript
Raw Normal View History

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