mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
27 lines
683 B
JavaScript
27 lines
683 B
JavaScript
// Draws inspiration from pwgen and http://tools.arantius.com/password
|
|
|
|
const randOf = (collection) => {
|
|
return () => {
|
|
return collection[Math.floor(Math.random() * collection.length)];
|
|
};
|
|
};
|
|
|
|
// Helper methods to get an random vowel or consonant
|
|
const randVowel = randOf('aeiou');
|
|
const randConsonant = randOf('bcdfghjklmnpqrstvwxyz');
|
|
|
|
module.exports = class PhoneticKeyGenerator {
|
|
|
|
// Generate a phonetic key of alternating consonant & vowel
|
|
createKey(keyLength) {
|
|
let text = '';
|
|
const start = Math.round(Math.random());
|
|
|
|
for (let i = 0; i < keyLength; i++) {
|
|
text += (i % 2 == start) ? randConsonant() : randVowel();
|
|
}
|
|
|
|
return text;
|
|
}
|
|
|
|
};
|