/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/server/after
NameSizeModeActions
after-context.js56530666editdlrm
after-context.js.map89260666editdlrm
after.js8090666editdlrm
after.js.map12740666editdlrm
awaiter.js21920666editdlrm
awaiter.js.map36650666editdlrm
builtin-request-context.js8500666editdlrm
builtin-request-context.js.map21330666editdlrm
index.js590666editdlrm
index.js.map1650666editdlrm
run-with-after.js10110666editdlrm
run-with-after.js.map21200666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/server/after/run-with-after.js (1011B)
import { DetachedPromise } from '../../lib/detached-promise'; import { CloseController } from '../web/web-on-close'; import { AwaiterOnce } from './awaiter'; export class AfterRunner { async executeAfter() { this.closeController.dispatchClose(); await this.awaiter.awaiting(); // if we got an error while running the callbacks, // thenthis is a noop, because the promise is already rejected this.finishedWithoutErrors.resolve(); return this.finishedWithoutErrors.promise; } constructor(){ this.awaiter = new AwaiterOnce(); this.closeController = new CloseController(); this.finishedWithoutErrors = new DetachedPromise(); this.context = { waitUntil: this.awaiter.waitUntil.bind(this.awaiter), onClose: this.closeController.onClose.bind(this.closeController), onTaskError: (error)=>this.finishedWithoutErrors.reject(error) }; } } //# sourceMappingURL=run-with-after.js.map