/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/server/normalizers/request
NameSizeModeActions
base-path.d.ts2680666editdlrm
base-path.js7510666editdlrm
base-path.js.map8760666editdlrm
next-data.d.ts3370666editdlrm
next-data.js14050666editdlrm
next-data.js.map21150666editdlrm
pathname-normalizer.d.ts2060666editdlrm
pathname-normalizer.js1290666editdlrm
pathname-normalizer.js.map670666editdlrm
prefetch-rsc.d.ts3530666editdlrm
prefetch-rsc.js9030666editdlrm
prefetch-rsc.js.map13590666editdlrm
prefix.d.ts2810666editdlrm
prefix.js12510666editdlrm
prefix.js.map18200666editdlrm
rsc.d.ts2470666editdlrm
rsc.js4900666editdlrm
rsc.js.map6540666editdlrm
segment-prefix-rsc.d.ts3440666editdlrm
segment-prefix-rsc.js9490666editdlrm
segment-prefix-rsc.js.map15960666editdlrm
suffix.d.ts2810666editdlrm
suffix.js8070666editdlrm
suffix.js.map12890666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/server/normalizers/request/suffix.js (807B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "SuffixPathnameNormalizer", { enumerable: true, get: function() { return SuffixPathnameNormalizer; } }); class SuffixPathnameNormalizer { constructor(suffix){ this.suffix = suffix; } match(pathname) { // If the pathname doesn't end in the suffix, we don't match. if (!pathname.endsWith(this.suffix)) return false; return true; } normalize(pathname, matched) { // If we're not matched and we don't match, we don't need to normalize. if (!matched && !this.match(pathname)) return pathname; return pathname.substring(0, pathname.length - this.suffix.length); } } //# sourceMappingURL=suffix.js.map