fix incorrect strict module formatter variable - fixes #706

This commit is contained in:
Sebastian McKenzie
2015-02-07 19:29:32 +11:00
parent 38f02a6429
commit 7f985fe08a
7 changed files with 9 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ var util = require("../../util");
module.exports = function (Parent) {
var Constructor = function () {
this.noInteropRequire = true;
this.noInteropRequireExport = true;
Parent.apply(this, arguments);
};