Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
27
node_modules/next/dist/server/normalizers/request/suffix.js
generated
vendored
Normal file
27
node_modules/next/dist/server/normalizers/request/suffix.js
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
"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
|
||||
Loading…
Add table
Add a link
Reference in a new issue