/* global $ */ var ConfigUtil = { /** * Method overrides JSON properties in config and * interfaceConfig Objects with the values from newConfig * @param config the config object for which we'll be overriding properties * @param interfaceConfig the interfaceConfig object for which we'll be * overriding properties. * @param newConfig object containing configuration properties. Destination * object is selected based on root property name: * { * config: { * // config.js properties to be * }, * interfaceConfig: { * // interfaceConfig.js properties here * } * } */ overrideConfigJSON: function (config, interfaceConfig, newConfig) { var configRoot, key, value, confObj; for (configRoot in newConfig) { confObj = null; if (configRoot == "config") { confObj = config; } else if (configRoot == "interfaceConfig") { confObj = interfaceConfig; } else { continue; } for (key in newConfig[configRoot]) { value = newConfig[configRoot][key]; if (confObj[key] && typeof confObj[key] !== typeof value) { console.log("Overriding a " + configRoot + " property with a property of different type."); } console.info("Overriding " + key + " with: " + value); confObj[key] = value; } } } }; module.exports = ConfigUtil;