2015-05-11 09:35:55 -06:00
|
|
|
/* global generatePassword */
|
|
|
|
|
2015-08-19 12:55:40 +01:00
|
|
|
export default function () {
|
2015-10-28 11:36:45 +00:00
|
|
|
let word = generatePassword(6);
|
|
|
|
let randomN = Math.floor(Math.random() * 1000);
|
2015-05-11 09:35:55 -06:00
|
|
|
|
|
|
|
return word + randomN;
|
|
|
|
}
|