Skip to content

Instantly share code, notes, and snippets.

@id-ilych
Created May 15, 2019 11:08
Show Gist options
  • Save id-ilych/09e3b9737f6c4d1cbe092ae173eb95a6 to your computer and use it in GitHub Desktop.
Save id-ilych/09e3b9737f6c4d1cbe092ae173eb95a6 to your computer and use it in GitHub Desktop.
// WebSocketFactory.d.ts
export function newWebSocket( url: String ): WebSocket;
// WebSocketFactory.js
exports.newWebSocket = function( url ) {
if (CC_JSB) {
return new WebSocket( url, [], "ssl_cert.pem" );
}
else {
return new WebSocket( url );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment