'use strict'; // Object constructor var Object2 = function(config) { this.name = 'Object2'; this.config = config; }; // Exporting constructor function module.exports = Object2;