3 lines
No EOL
91 B
TypeScript
3 lines
No EOL
91 B
TypeScript
export function validateUsername(username: string) {
|
|
return /^[\w.-]+$/.test(username);
|
|
} |