refactor: substr -> substring (#11273)
				
					
				
			This commit is contained in:
		| @@ -4,7 +4,7 @@ export type Acct = { | ||||
| }; | ||||
|  | ||||
| export function parse(acct: string): Acct { | ||||
| 	if (acct.startsWith('@')) acct = acct.substr(1); | ||||
| 	if (acct.startsWith('@')) acct = acct.substring(1); | ||||
| 	const split = acct.split('@', 2); | ||||
| 	return { username: split[0], host: split[1] ?? null }; | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 okayurisotto
					okayurisotto