all files / candela/VisComponent/mixin/ Events.js

100% Statements 31/31
96% Branches 24/25
100% Functions 7/7
100% Lines 6/6
3 statements, 10 branches Ignored     
1 2 3 4 5 6 7 8 9 10 11 12              
import telegraph from 'telegraph-events';
 
let Events = Base => class extends Base {
  constructor (...args) {
    super(...args);
    telegraph(this);
  }
};
 
export default Events;