Skip to content

Instantly share code, notes, and snippets.

@u-nel
Created February 19, 2018 01:08
Show Gist options
  • Save u-nel/bc86912e7b58866625be250a43f672ee to your computer and use it in GitHub Desktop.
Save u-nel/bc86912e7b58866625be250a43f672ee to your computer and use it in GitHub Desktop.
exports.inherits = function(ctor, superCtor) {
ctor.super_ = superCtor;
ctor.prototype = Object.create(superCtor.prototype, {
constructor: {
value: ctor,
enumerable: false,
writable: true,
configurable: true
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment