Bug 1702543 - Fixes eslint errors in browser/extensions/screenshots/blobConverters.js. r=emalysz

Differential Revision: https://phabricator.services.mozilla.com/D110756
This commit is contained in:
Kajal Sah 2021-04-05 16:02:06 +00:00
Родитель 51df3fe420
Коммит 410b0b3ed2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -12,7 +12,7 @@ this.blobConverters = (function() {
contentType = "image/png";
}
const data = Uint8Array.from(binary, char => char.charCodeAt(0));
const blob = new Blob([data], {type: contentType});
const blob = new Blob([data], { type: contentType });
return blob;
};