📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 16:21:08
📂
/ (Root)
/
home
/
supecsoq
/
.trash
/
node_modules
/
next
/
dist
/
server
/
normalizers
/
request
📍 /home/supecsoq/.trash/node_modules/next/dist/server/normalizers/request
🔄 Refresh
✏️
Editing: suffix.js
Writable
"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
💾 Save Changes
❌ Cancel