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