Michael Warming

Results 1 comments of Michael Warming

``` js function flatObj(preKey, obj, result = {}) { if (JSON.stringify(obj) === '{}') { return {}; } for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { const curKey =...