1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 1 3 39 39 3 3 | var util = require("../../util"); module.exports = function (Parent) { var Constructor = function () { this.noInteropExport = true; Parent.apply(this, arguments); }; util.inherits(Constructor, Parent); return Constructor; }; |