2014-10-11 22:33:08 +11:00

18 lines
300 B
JavaScript

var Q = function(_ref) {
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() {});