event-pubsub/event-pubsub.js

9 lines
144 B
JavaScript
Raw Permalink Normal View History

2016-09-30 03:58:44 -07:00
'use strict';
let EventPubSub = require('./es5');
if(process.version[1]>5){
EventPubSub = require('./es6');
2014-02-18 20:47:21 -08:00
}
2016-09-30 03:58:44 -07:00
module.exports=EventPubSub;