UNPKG

1.35 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.Events = undefined;
7
8var _events = require('./events');
9
10function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } /**
11 * Module : Kero webpack entry events index
12 * Author : liuyk(liuyuekai@yonyou.com)
13 * Date : 2016-08-09 15:24:46
14 */
15
16//相关依赖导入
17
18
19var Events = function Events() {
20 _classCallCheck(this, Events);
21};
22
23Events.prototype.on = _events.on;
24Events.prototype.off = _events.off;
25Events.prototype.one = _events.one;
26Events.prototype.trigger = _events.trigger;
27Events.prototype.getEvent = _events.getEvent;
28
29exports.Events = Events;
\No newline at end of file