kibana-riya
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
49 lines (38 loc) • 1.69 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var Binder = (function () {
function Binder() {
_classCallCheck(this, Binder);
this.disposal = [];
}
_createClass(Binder, [{
key: "on",
value: function on(emitter) {
for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
}
var on = emitter.on || emitter.addListener;
var off = emitter.off || emitter.removeListener;
on.apply(emitter, args);
this.disposal.push(function () {
return off.apply(emitter, args);
});
}
}, {
key: "destroy",
value: function destroy() {
var destroyers = this.disposal;
this.disposal = [];
destroyers.forEach(function (fn) {
return fn();
});
}
}]);
return Binder;
})();
exports["default"] = Binder;
module.exports = exports["default"];