react-page-objects
Version:
Page Object pattern for testing React components
33 lines (24 loc) • 632 B
JavaScript
var _ = require("underscore");
function extend(protoProps, staticProps) {
var parent = this;
var child;
if (protoProps && _.has(protoProps, "constructor")) {
child = protoProps.constructor;
} else {
child = function() {
return parent.apply(this, arguments);
};
}
_.extend(child, parent, staticProps);
var Surrogate = function() {
this.constructor = child;
};
Surrogate.prototype = parent.prototype;
child.prototype = new Surrogate();
if (protoProps) {
_.extend(child.prototype, protoProps);
}
child.__super__ = parent.prototype;
return child;
}
module.exports = extend;