mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-29 12:26:43 -06:00
9dd06a7621
* Enhance /.well-known and their friends * Fix bug
7 lines
213 B
TypeScript
7 lines
213 B
TypeScript
import Acct from './type';
|
|
|
|
export default (acct: string): Acct => {
|
|
if (acct.startsWith('@')) acct = acct.substr(1);
|
|
const split = acct.split('@', 2);
|
|
return { username: split[0], host: split[1] || null };
|
|
};
|