MozReview-Commit-ID: IF010Y5ERks Differential Revision: https://phabricator.services.mozilla.com/D8505
15 lines
384 B
JavaScript
15 lines
384 B
JavaScript
/* exported randomString */
|
|
|
|
"use strict";
|
|
|
|
this.randomString = function randomString(length, chars) {
|
|
const randomStringChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
|
chars = chars || randomStringChars;
|
|
let result = "";
|
|
for (let i = 0; i < length; i++) {
|
|
result += chars[Math.floor(Math.random() * chars.length)];
|
|
}
|
|
return result;
|
|
};
|
|
null;
|