babel/lib/6to5/templates/inherits.js
Sebastian McKenzie c97696c224 first commit
2014-09-28 23:39:22 +10:00

9 lines
175 B
JavaScript

CLASS_NAME.prototype = Object.create(SUPER_NAME.prototype, {
constructor: {
value: CLASS_NAME,
enumerable: false,
writable: true,
configurable: true
}
});