UNPKG

dissemination

Version:

Lightweight event/command library created to replace Backbone.Radio

22 lines (15 loc) 729 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var _EventMixin = _interopRequireDefault(require("./mixins/EventMixin")); var _CommandMixin = _interopRequireDefault(require("./mixins/CommandMixin")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } var Channel = function Channel() { _classCallCheck(this, Channel); }; Object.assign(Channel.prototype, _EventMixin["default"], _CommandMixin["default"]); var _default = Channel; exports["default"] = _default;