misskey/src/misc/acct/parse.ts

8 lines
213 B
TypeScript
Raw Normal View History

import Acct from './type';
export default (acct: string): Acct => {
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
};