/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/build/templates
NameSizeModeActions
app-page.d.ts8980666editdlrm
app-page.js526040666editdlrm
app-page.js.map705730666editdlrm
app-route.d.ts7910666editdlrm
app-route.js179080666editdlrm
app-route.js.map245260666editdlrm
edge-app-route.d.ts2100666editdlrm
edge-app-route.js30140666editdlrm
edge-app-route.js.map21560666editdlrm
edge-ssr-app.d.ts2830666editdlrm
edge-ssr-app.js132680666editdlrm
edge-ssr-app.js.map202030666editdlrm
edge-ssr.d.ts2830666editdlrm
edge-ssr.js131940666editdlrm
edge-ssr.js.map190430666editdlrm
helpers.d.ts2660666editdlrm
helpers.js10980666editdlrm
helpers.js.map14360666editdlrm
middleware.d.ts2620666editdlrm
middleware.js37900666editdlrm
middleware.js.map37460666editdlrm
pages-api.d.ts3020666editdlrm
pages-api.js75570666editdlrm
pages-api.js.map98170666editdlrm
pages-edge-api.d.ts2540666editdlrm
pages-edge-api.js12430666editdlrm
pages-edge-api.js.map13680666editdlrm
pages.d.ts8360666editdlrm
pages.js54390666editdlrm
pages.js.map41300666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/build/templates/helpers.js (1098B)
/** * Hoists a name from a module or promised module. * * @param module the module to hoist the name from * @param name the name to hoist * @returns the value on the module (or promised module) */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "hoist", { enumerable: true, get: function() { return hoist; } }); function hoist(module, name) { // If the name is available in the module, return it. if (name in module) { return module[name]; } // If a property called `then` exists, assume it's a promise and // return a promise that resolves to the name. if ('then' in module && typeof module.then === 'function') { return module.then((mod)=>hoist(mod, name)); } // If we're trying to hoise the default export, and the module is a function, // return the module itself. if (typeof module === 'function' && name === 'default') { return module; } // Otherwise, return undefined. return undefined; } //# sourceMappingURL=helpers.js.map