/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/build/templates
NameSizeModeActions
app-page.js494260666editdlrm
app-page.js.map708920666editdlrm
app-route.js154140666editdlrm
app-route.js.map246140666editdlrm
edge-app-route.js11080666editdlrm
edge-app-route.js.map21550666editdlrm
edge-ssr-app.js112280666editdlrm
edge-ssr-app.js.map203700666editdlrm
edge-ssr.js108930666editdlrm
edge-ssr.js.map191520666editdlrm
helpers.js9060666editdlrm
helpers.js.map14210666editdlrm
middleware.js21930666editdlrm
middleware.js.map37710666editdlrm
pages-api.js55500666editdlrm
pages-api.js.map98340666editdlrm
pages-edge-api.js8140666editdlrm
pages-edge-api.js.map14020666editdlrm
pages.js22100666editdlrm
pages.js.map40020666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/build/templates/helpers.js (906B)
/** * 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) */ export 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