mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-06 06:14:53 +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);
|
|
}
|