ac-bundle-module-utils-username
utils/username.js
A module for ac-bundle-app, published by ac-bundle-module.
Available Methods: valid, exists
valid
function(value) {
var re = /^\w+$/;
return re.test(value) && value.length = 5;
}
exists
async function(username) {…
var {users, error} = await app.api.mysql.request("users", function(data) {}, `
SELECT