mirror of
https://github.com/raz-varren/sacrificial-socket.git
synced 2025-10-14 20:25:42 +08:00
moar npm friendly
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "sacrificial-socket",
|
"name": "sacrificial-socket",
|
||||||
"version": "1.1.2",
|
"version": "1.1.3",
|
||||||
"description": "Client javascript for use with the Sacrificial-Socket service",
|
"description": "Client javascript for use with the Sacrificial-Socket service",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"websocket",
|
"websocket",
|
||||||
@@ -11,5 +11,6 @@
|
|||||||
"files": [
|
"files": [
|
||||||
"sacrificial-socket.js",
|
"sacrificial-socket.js",
|
||||||
"ng-ss.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
|
* SS is the constructor for the sacrificial-socket client
|
||||||
*
|
*
|
||||||
@@ -239,4 +245,5 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
window.SS = SS;
|
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
|
* SS is the constructor for the sacrificial-socket client
|
||||||
*
|
*
|
||||||
@@ -239,4 +245,5 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
window.SS = SS;
|
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
|
* SS is the constructor for the sacrificial-socket client
|
||||||
*
|
*
|
||||||
@@ -239,4 +245,5 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
window.SS = SS;
|
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
|
* SS is the constructor for the sacrificial-socket client
|
||||||
*
|
*
|
||||||
@@ -239,4 +245,5 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
window.SS = SS;
|
window.SS = SS;
|
||||||
})(window);
|
module.exports = SS;
|
||||||
|
})(window, module);
|
Reference in New Issue
Block a user