bpms_site/.svn/pristine/90/9031dc3c4c074e2ae9fd82f5aa6e8011abe39af9.svn-base
2025-11-02 16:38:49 +03:30

17 lines
388 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "UnderscoreNormalizer", {
enumerable: true,
get: function() {
return UnderscoreNormalizer;
}
});
class UnderscoreNormalizer {
normalize(pathname) {
return pathname.replace(/%5F/g, "_");
}
}
//# sourceMappingURL=underscore-normalizer.js.map