cloudboost-tv
Version:
Database Service that does Storage, Search, Real-time and a whole lot more.
21 lines (12 loc) • 382 B
JavaScript
var util = {
makeString : function(){
var text = "x";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( var i=0; i < 5; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return 'x'+text;
},
makeEmail : function(){
return this.makeString()+'@sample.com';
}
};