Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
"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);