forked from mirrors/gecko-dev
MozReview-Commit-ID: DICbgINxnoa --HG-- extra : rebase_source : 065193b99216d68cf7f3ab3a41944f3d2a0836eb
14 lines
380 B
JavaScript
14 lines
380 B
JavaScript
/* exported randomString */
|
|
|
|
"use strict";
|
|
|
|
this.randomString = function randomString(length, chars) {
|
|
let 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;
|