motion
Version:
motion - moving development forward
28 lines (19 loc) • 769 B
JavaScript
exports.__esModule = true;
// istanbul ignore next
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
var _util = require("../../util");
var util = _interopRequireWildcard(_util);
/**
* [Please add a description.]
*/
exports["default"] = function (Parent) {
var Constructor = function Constructor() {
this.noInteropRequireImport = true;
this.noInteropRequireExport = true;
Parent.apply(this, arguments);
};
util.inherits(Constructor, Parent);
return Constructor;
};
module.exports = exports["default"];
;