Code coverage report for require-dir-all/demo/map/modules/module2.js

Statements: 100% (4 / 4)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (4 / 4)      Ignored: none     

All files » require-dir-all/demo/map/modules/ » module2.js
1 2 3 4 5 6 7 8 9 10 11      1 2 2       1  
'use strict';
 
// Object constructor
var Object2 = function(config) {
  this.name = 'Object2';
  this.config = config;
};
 
// Exporting constructor function
module.exports = Object2;