@speakr/speakr-module-services
Version:
SPEAKR Shared Service Module
15 lines (11 loc) • 330 B
JavaScript
module.exports = {
generate
};
function generate() {
let text = "";
let possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( let i=0; i < 10; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
console.log("HERE IS YOUR HASHOLE >>>>> ", text)
return text;
}