We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5359b5a commit 97b7fc1Copy full SHA for 97b7fc1
server/listen.js
@@ -10,7 +10,7 @@ const getValue = require('./get-value');
10
const isFn = (a) => typeof a === 'function';
11
const pack = currify(require('./pack'));
12
13
-const connectionWraped = wraptile(connection);
+const connectionWrapped = wraptile(connection);
14
const wrongOperation = currify(_wrongOperation);
15
16
const id = fullstore(0);
@@ -41,7 +41,7 @@ function listen(socket, options) {
41
return connection(root, socket);
42
43
const reject = () => socket.emit('reject');
44
- socket.on('auth', auth(connectionWraped(root, socket), reject));
+ socket.on('auth', auth(connectionWrapped(root, socket), reject));
45
});
46
}
47
0 commit comments