aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind
diff options
context:
space:
mode:
Diffstat (limited to 'signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind')
-rw-r--r--signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/component.json14
-rw-r--r--signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/index.js24
2 files changed, 38 insertions, 0 deletions
diff --git a/signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/component.json b/signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/component.json
new file mode 100644
index 0000000..ebdf642
--- /dev/null
+++ b/signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/component.json
@@ -0,0 +1,14 @@
+{
+ "name": "bind",
+ "version": "0.0.1",
+ "description": "function binding utility",
+ "keywords": [
+ "bind",
+ "utility"
+ ],
+ "dependencies": {},
+ "scripts": [
+ "index.js"
+ ],
+ "repo": "https://raw.github.com/component/bind"
+} \ No newline at end of file
diff --git a/signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/index.js b/signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/index.js
new file mode 100644
index 0000000..9808fc0
--- /dev/null
+++ b/signaling-server/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/index.js
@@ -0,0 +1,24 @@
+
+/**
+ * Slice reference.
+ */
+
+var slice = [].slice;
+
+/**
+ * Bind `obj` to `fn`.
+ *
+ * @param {Object} obj
+ * @param {Function|String} fn or string
+ * @return {Function}
+ * @api public
+ */
+
+module.exports = function(obj, fn){
+ if ('string' == typeof fn) fn = obj[fn];
+ if ('function' != typeof fn) throw new Error('bind() requires a function');
+ var args = [].slice.call(arguments, 2);
+ return function(){
+ return fn.apply(obj, args.concat(slice.call(arguments)));
+ }
+};