зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1702568 - Fixes eslint errors in browser/extensions/screenshots/randomString.js. r=emalysz
Differential Revision: https://phabricator.services.mozilla.com/D110749
This commit is contained in:
Родитель
3aa5a49e71
Коммит
59362e90ee
|
@ -7,7 +7,8 @@
|
|||
"use strict";
|
||||
|
||||
this.randomString = function randomString(length, chars) {
|
||||
const randomStringChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
||||
const randomStringChars =
|
||||
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
||||
chars = chars || randomStringChars;
|
||||
let result = "";
|
||||
for (let i = 0; i < length; i++) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче