Code coverage report for 6to5/lib/6to5/transformation/modules/_strict.js

Statements: 100% (7 / 7)      Branches: 100% (0 / 0)      Functions: 100% (2 / 2)      Lines: 100% (7 / 7)      Ignored: none     

All files » 6to5/lib/6to5/transformation/modules/ » _strict.js
1 2 3 4 5 6 7 8 9 10 11 12 131   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;
};