forked from socketstream/socketstream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransport.js
34 lines (33 loc) · 857 Bytes
/
transport.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Generated by CoffeeScript 1.3.3
module.exports = function() {
var config, transport;
transport = null;
config = {};
return {
use: function(nameOrModule, cfg) {
var modPath;
if (cfg == null) {
cfg = {};
}
config = cfg;
return transport = (function() {
if (typeof nameOrModule === 'object') {
return nameOrModule;
} else {
modPath = "./transports/" + nameOrModule;
if (require.resolve(modPath)) {
return require(modPath);
} else {
throw new Error("Unable to find Publish Event Transport '" + nameOrModule + "' internally. Please pass a module");
}
}
})();
},
load: function() {
if (transport == null) {
this.use('internal');
}
return transport(config);
}
};
};