UNPKG

182 BJavaScriptView Raw
1'use strict';
2
3module.exports = (configObj) => {
4 const atrixConfig = configObj;
5 return (cfg) => {
6 Object.keys(cfg).forEach(key => {
7 atrixConfig[key] = cfg[key];
8 });
9 };
10};
11