mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix bool-param-default
This commit is contained in:
parent
64766e1dae
commit
ab56f91c40
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ export const isRemoteUser = (user: any): user is IRemoteUser =>
|
|||
!isLocalUser(user);
|
||||
|
||||
//#region Validators
|
||||
export function validateUsername(username: string, remote?: boolean): boolean {
|
||||
export function validateUsername(username: string, remote = false): boolean {
|
||||
return typeof username == 'string' && (remote ? /^\w([\w-]*\w)?$/ : /^\w{1,20}$/).test(username);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue