Files
2019-03-06 14:31:37 +00:00

16 lines
215 B
JavaScript

import * as dummy from 'dummy';
function F() {
this.init();
}
F.prototype.init = function() {
this.method();
let m = this.method.bind(this);
m();
};
F.prototype.method = function() {};
export default F;