24 lines
427 B
JavaScript
24 lines
427 B
JavaScript
"use strict";
|
|
|
|
var _inherits = function (child, parent) {
|
|
child.prototype = Object.create(parent && parent.prototype, {
|
|
constructor: {
|
|
value: child,
|
|
enumerable: false,
|
|
writable: true,
|
|
configurable: true
|
|
}
|
|
});
|
|
if (parent) child.__proto__ = parent;
|
|
};
|
|
|
|
var _QSuper = function () {};
|
|
|
|
var Q = function Q() {
|
|
if (_QSuper) {
|
|
_QSuper.apply(this, arguments);
|
|
}
|
|
};
|
|
|
|
_inherits(Q, _QSuper);
|