xhttp.onreadystatechange = function()

in src/Frontend/src/services/gcs.ts [16:22]


            xhttp.onreadystatechange = function() {
                if (this.readyState == 4 && this.status == 200) {
                    // Typical action to be performed when the document is ready:
                    const response = !isEmpty(this.responseURL) ? this.responseURL : true;
                    resolve(response);
                }
            };