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:
var Chainable = function Chainable(parent) {
  this.parent = parent
  this.className = this.constructor.name
}

class Eh extends Chainable {
  constructor(parent) {
    super(parent)
    console.log(this)
  }
}

const eh = new Eh()
console.log(eh.className)