UNPKG

@speakr/speakr-module-services

Version:
15 lines (11 loc) 330 B
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; }