12345678910111213141516171819 |
- 'use strict';
- /**
- * Socket class.
- * @class
- * @memberof module:network
- */
- function Socket() {}
- /**
- * Open the socket.
- */
- Socket.prototype.open = function() {};
- /**
- * Unique identifier for `Socket` class.
- */
- Socket.uid = '12345';
|