Sha256: 42da4286af1ec4ee26749090588ce1ddfba02c53d246d0c3f7db5aec35720586
Contents?: true
Size: 254 Bytes
Versions: 20
Compression:
Stored size: 254 Bytes
Contents
class TcpConnectionData { constructor(hostname, port) { this.hostname = hostname this.port = port } get_hostname() { return this.hostname } get_port() { return this.port } } module.exports = TcpConnectionData
Version data entries
20 entries across 20 versions & 1 rubygems