We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fc04b20 + 36a1995 commit ea765b8Copy full SHA for ea765b8
package/lib/transport/websocket.js
@@ -162,7 +162,7 @@ Factory.prototype.create = function () {
162
} else {
163
websocket = new global.WebSocket(self._options.url);
164
}
165
- websocket.binaryType = 'arrayBuffer';
+ websocket.binaryType = 'arraybuffer';
166
167
// older versions of Firefox prefix the WebSocket object
168
} else if ("MozWebSocket" in global) {
@@ -228,4 +228,5 @@ Factory.prototype.create = function () {
228
};
229
230
231
+
232
exports.Factory = Factory;
package/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "autobahn",
3
- "version": "0.10.0",
+ "version": "0.10.1",
4
"description": "An implementation of The Web Application Messaging Protocol (WAMP).",
5
"main": "index.js",
6
"browser": {
0 commit comments