qauMaWeb/node_modules/event-pubsub/event-pubsub.js

9 lines
144 B
JavaScript
Raw Permalink Normal View History

2024-10-13 18:02:27 +08:00
'use strict';
let EventPubSub = require('./es5');
if(process.version[1]>5){
EventPubSub = require('./es6');
}
module.exports=EventPubSub;