Repository URL to install this package:
|
Version:
1.2.9 ▾
|
"use strict";
var Chainable = function Chainable(parent) {
this.parent = parent;
this.className = this.constructor.name;
};
let Eh = class Eh extends Chainable {
constructor(parent) {
super(parent);
console.log(this);
}
};
const eh = new Eh();
console.log(eh.className);