/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/server/request
NameSizeModeActions
connection.js69970666editdlrm
connection.js.map84930666editdlrm
cookies.js201800666editdlrm
cookies.js.map315520666editdlrm
draft-mode.js134720666editdlrm
draft-mode.js.map210970666editdlrm
fallback-params.js10800666editdlrm
fallback-params.js.map21340666editdlrm
headers.js179150666editdlrm
headers.js.map269180666editdlrm
params.js255420666editdlrm
params.js.map391840666editdlrm
pathname.js40080666editdlrm
pathname.js.map62060666editdlrm
root-params.js136890666editdlrm
root-params.js.map185160666editdlrm
search-params.js311100666editdlrm
search-params.js.map469870666editdlrm
utils.js21240666editdlrm
utils.js.map31130666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/server/request/fallback-params.js (1080B)
import { getRouteMatcher } from '../../shared/lib/router/utils/route-matcher'; import { getRouteRegex } from '../../shared/lib/router/utils/route-regex'; function getParamKeys(page) { const pattern = getRouteRegex(page); const matcher = getRouteMatcher(pattern); // Get the default list of allowed params. return Object.keys(matcher(page)); } export function getFallbackRouteParams(pageOrKeys) { let keys; if (typeof pageOrKeys === 'string') { keys = getParamKeys(pageOrKeys); } else { keys = pageOrKeys; } // If there are no keys, we can return early. if (keys.length === 0) return null; const params = new Map(); // As we're creating unique keys for each of the dynamic route params, we only // need to generate a unique ID once per request because each of the keys will // be also be unique. const uniqueID = Math.random().toString(16).slice(2); for (const key of keys){ params.set(key, `%%drp:${key}:${uniqueID}%%`); } return params; } //# sourceMappingURL=fallback-params.js.map