Zofer

Results 3 comments of Zofer

I am also dealing with that and I added babel-plugin-istanbul.

> I am also dealing with that and I added babel-plugin-istanbul. My problem is solved because the 'include' path in 'babel-loader' is incorrect.

```JS function isPlainObject(obj){ return Object.prototype.toString.call(obj) === '[object Object]' } const output = {} function parserObj(obj,parentKey=''){ if(isPlainObject(obj)){ Object.keys(obj).forEach(key=>{ parserObj(obj[key],`${parentKey}${key}.`) }) }else{ output[parentKey] = obj } } var entry = { a:...