mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
'use strict';
|
|
|
|
var transportList = require('./transport-list');
|
|
|
|
module.exports = require('./main')(transportList);
|
|
|
|
// TODO can't get rid of this until all servers do
|
|
if ('_sockjs_onload' in global) {
|
|
setTimeout(global._sockjs_onload, 1);
|
|
}
|