Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
"use strict";
|
|
|
|
/* @minVersion 7.22.0 */
|
|
function dispose_SuppressedError(suppressed, error) {
|
|
if (typeof SuppressedError !== "undefined") {
|
|
// eslint-disable-next-line no-undef
|
|
dispose_SuppressedError = SuppressedError;
|
|
} else {
|
|
dispose_SuppressedError = function SuppressedError(suppressed, error) {
|
|
this.suppressed = suppressed;
|
|
this.error = error;
|
|
this.stack = new Error().stack;
|
|
};
|
|
dispose_SuppressedError.prototype = Object.create(Error.prototype, { constructor: { value: dispose_SuppressedError, writable: true, configurable: true } });
|
|
}
|
|
return new dispose_SuppressedError(suppressed, error);
|
|
}
|
|
|
|
function _dispose(stack, error, hasError) {
|
|
function next() {
|
|
while (stack.length > 0) {
|
|
try {
|
|
var r = stack.pop();
|
|
var p = r.d.call(r.v);
|
|
if (r.a) return Promise.resolve(p).then(next, err);
|
|
} catch (e) {
|
|
return err(e);
|
|
}
|
|
}
|
|
if (hasError) throw error;
|
|
}
|
|
|
|
function err(e) {
|
|
error = hasError ? new dispose_SuppressedError(e, error) : e;
|
|
hasError = true;
|
|
|
|
return next();
|
|
}
|
|
|
|
return next();
|
|
}
|
|
|
|
exports._ = _dispose;
|