mirror of
https://github.com/raz-varren/sacrificial-socket.git
synced 2025-10-16 05:00:39 +08:00
moar npm friendly
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "sacrificial-socket",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"description": "Client javascript for use with the Sacrificial-Socket service",
|
||||
"keywords": [
|
||||
"websocket",
|
||||
@@ -11,5 +11,6 @@
|
||||
"files": [
|
||||
"sacrificial-socket.js",
|
||||
"ng-ss.js"
|
||||
]
|
||||
],
|
||||
"main": "sacrificial-socket.js"
|
||||
}
|
@@ -1,4 +1,10 @@
|
||||
(function(window){ 'use strict';
|
||||
if(typeof window === 'undefined'){
|
||||
var window = {};
|
||||
}
|
||||
if(typeof module === 'undefined'){
|
||||
var module = {};
|
||||
}
|
||||
(function(window, module){ 'use strict';
|
||||
/**
|
||||
* SS is the constructor for the sacrificial-socket client
|
||||
*
|
||||
@@ -239,4 +245,5 @@
|
||||
};
|
||||
|
||||
window.SS = SS;
|
||||
})(window);
|
||||
module.exports = SS;
|
||||
})(window, module);
|
@@ -1,4 +1,10 @@
|
||||
(function(window){ 'use strict';
|
||||
if(typeof window === 'undefined'){
|
||||
var window = {};
|
||||
}
|
||||
if(typeof module === 'undefined'){
|
||||
var module = {};
|
||||
}
|
||||
(function(window, module){ 'use strict';
|
||||
/**
|
||||
* SS is the constructor for the sacrificial-socket client
|
||||
*
|
||||
@@ -239,4 +245,5 @@
|
||||
};
|
||||
|
||||
window.SS = SS;
|
||||
})(window);
|
||||
module.exports = SS;
|
||||
})(window, module);
|
@@ -1,4 +1,10 @@
|
||||
(function(window){ 'use strict';
|
||||
if(typeof window === 'undefined'){
|
||||
var window = {};
|
||||
}
|
||||
if(typeof module === 'undefined'){
|
||||
var module = {};
|
||||
}
|
||||
(function(window, module){ 'use strict';
|
||||
/**
|
||||
* SS is the constructor for the sacrificial-socket client
|
||||
*
|
||||
@@ -239,4 +245,5 @@
|
||||
};
|
||||
|
||||
window.SS = SS;
|
||||
})(window);
|
||||
module.exports = SS;
|
||||
})(window, module);
|
@@ -1,4 +1,10 @@
|
||||
(function(window){ 'use strict';
|
||||
if(typeof window === 'undefined'){
|
||||
var window = {};
|
||||
}
|
||||
if(typeof module === 'undefined'){
|
||||
var module = {};
|
||||
}
|
||||
(function(window, module){ 'use strict';
|
||||
/**
|
||||
* SS is the constructor for the sacrificial-socket client
|
||||
*
|
||||
@@ -239,4 +245,5 @@
|
||||
};
|
||||
|
||||
window.SS = SS;
|
||||
})(window);
|
||||
module.exports = SS;
|
||||
})(window, module);
|
Reference in New Issue
Block a user