Rocky_Mountain_Vending/.pnpm-store/v10/files/75/edc69ef2dbadf45302418b68f7c7adaabb2f30ff0a5cbed505df617d9f43dcc1ba57b381db4b5ec40735f2d6701e2700346268fdcebac7c671b504273d2800
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

41 lines
No EOL
1.4 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "tcpProxy", {
enumerable: true,
get: function() {
return tcpProxy;
}
});
const _net = /*#__PURE__*/ _interop_require_default(require("net"));
function _interop_require_default(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
function tcpProxy(addresses) {
// net.Socket docs https://nodejs.org/api/net.html#class-netsocket
const originalConnect = _net.default.Socket.prototype.connect;
// Override the connect method
_net.default.Socket.prototype.connect = function(...args) {
// First, check if the first argument is an object and not null
if (typeof args[0] === 'object' && args[0] !== null) {
const options = args[0];
// check if the options has what we need
if ('port' in options && options.port !== undefined && 'host' in options && options.host !== undefined) {
addresses.push({
addr: options.host,
port: options.port.toString()
});
}
}
return originalConnect.apply(this, args);
};
return ()=>{
// Restore the original connect method
_net.default.Socket.prototype.connect = originalConnect;
};
}
//# sourceMappingURL=tcp.js.map