proxy-chain
Version:
Node.js implementation of a proxy server (think Squid) with support for SSL, authentication, upstream proxy chaining, and protocol tunneling.
13 lines • 415 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.decodeURIComponentSafe = void 0;
const decodeURIComponentSafe = (encodedURIComponent) => {
try {
return decodeURIComponent(encodedURIComponent);
}
catch {
return encodedURIComponent;
}
};
exports.decodeURIComponentSafe = decodeURIComponentSafe;
//# sourceMappingURL=decode_uri_component_safe.js.map
;