18 lines
309 B
JavaScript

var Q = function(_ref) {
var Q = function Q() {
_ref.apply(this, arguments);
};
Q.prototype = Object.create(_ref.prototype, {
constructor: {
value: Q,
enumerable: false,
writable: true,
configurable: true
}
});
Q.__proto__ = _ref;
return Q;
}(function() {});