You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

nativescript-websockets

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-websockets - npm Package Compare versions

Comparing version

to
1.5.3

9

package.json
{
"name": "nativescript-websockets",
"version": "1.5.2",
"version": "1.5.3",
"description": "A WebSocket NativeScript module for Android and iOS",

@@ -40,3 +40,8 @@ "main": "websockets",

"url": "https://github.com/myso-kr"
}
},
{
"name": "Linus Gasser",
"email": "linus.gasser@epfl.ch",
"url": "https://github.com/ineiti"
}
],

@@ -43,0 +48,0 @@ "bugs": {

@@ -449,3 +449,3 @@ /*****************************************************************************************

if (eventCallbacks[i].c === callback) {
eventCallbacks.slice(i, 1);
eventCallbacks.splice(i, 1);
}

@@ -517,3 +517,3 @@ }

if (message != null && !this._browser) {
this._queue.push(message);
this._queue.push(message.slice(0));
this._startQueueRunner();

@@ -536,3 +536,3 @@ }

}
this._queue.push(message);
this._queue.push(message.slice(0));
this._startQueueRunner();

@@ -539,0 +539,0 @@ return false;

@@ -8,3 +8,3 @@ /*****************************************************************************************

*
* Version 1.5.0 Nathan@master-technology.com
* Version 1.5.2 Nathan@master-technology.com
****************************************************************************************/

@@ -257,3 +257,3 @@ "use strict";

if (eventCallbacks[i].c === callback) {
eventCallbacks.slice(i, 1);
eventCallbacks.splice(i, 1);
}

@@ -335,3 +335,3 @@ }

}
this._queue.push(message);
this._queue.push(message.slice(0));
this._startQueueRunner();

@@ -338,0 +338,0 @@ return false;