import modules properly
This commit is contained in:
parent
d71e9effd0
commit
2b24bf17b0
2 changed files with 11 additions and 15 deletions
|
@ -70,9 +70,6 @@ export default class logging {
|
||||||
@param {boolean} critical the critical nature
|
@param {boolean} critical the critical nature
|
||||||
*/
|
*/
|
||||||
static async error(ERROR_CODE, ERROR_MESSAGE, ERROR_STACK, critical = true) {
|
static async error(ERROR_CODE, ERROR_MESSAGE, ERROR_STACK, critical = true) {
|
||||||
// Import the templating.
|
|
||||||
const texts = (await import(chrome.runtime.getURL("/scripts/strings/read.js"))).default;
|
|
||||||
|
|
||||||
// Display the error message.
|
// Display the error message.
|
||||||
console.error(texts.localized(`error_msg`, false, [ERROR_CODE, ERROR_MESSAGE, ERROR_STACK]));
|
console.error(texts.localized(`error_msg`, false, [ERROR_CODE, ERROR_MESSAGE, ERROR_STACK]));
|
||||||
if (critical) {
|
if (critical) {
|
||||||
|
|
|
@ -2,21 +2,20 @@
|
||||||
This script provides network utilities.
|
This script provides network utilities.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
import texts from "/scripts/strings/read.js";
|
||||||
Download a file from the network or locally.
|
import logging from "/scripts/logging.js";
|
||||||
|
|
||||||
@param {string} URL the URL to download
|
|
||||||
@param {string} TYPE the expected TYPE of file
|
|
||||||
@param {boolean} VERIFY_ONLY whether to verify the file only, not return its content
|
|
||||||
@param {boolean} STRICT strictly follow the file type provided
|
|
||||||
@returns {Promise} the downloaded file
|
|
||||||
*/
|
|
||||||
export default class net {
|
export default class net {
|
||||||
static async download(URL, TYPE, VERIFY_ONLY = false, STRICT = false) {
|
/*
|
||||||
const texts = (await import(chrome.runtime.getURL(`/scripts/strings/read.js`)))
|
Download a file from the network or locally.
|
||||||
.default;
|
|
||||||
const logging = (await import(chrome.runtime.getURL(`/scripts/logging.js`))).default;
|
|
||||||
|
|
||||||
|
@param {string} URL the URL to download
|
||||||
|
@param {string} TYPE the expected TYPE of file
|
||||||
|
@param {boolean} VERIFY_ONLY whether to verify the file only, not return its content
|
||||||
|
@param {boolean} STRICT strictly follow the file type provided
|
||||||
|
@returns {Promise} the downloaded file
|
||||||
|
*/
|
||||||
|
static async download(URL, TYPE, VERIFY_ONLY = false, STRICT = false) {
|
||||||
let CONNECT, DATA;
|
let CONNECT, DATA;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue