9 lines
No EOL
159 B
JavaScript
9 lines
No EOL
159 B
JavaScript
'use strict';
|
|
|
|
function usernameValid(username) {
|
|
return /^[a-zA-Z0-9][a-zA-Z0-9_\-.]*$/.test(username);
|
|
}
|
|
|
|
module.exports = {
|
|
usernameValid
|
|
}; |