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