seriouslym

Results 3 comments of seriouslym

Do you solve the problem? I have no idea for the same problem .

``` let timeout = (promise) => { return new Promise((resolve, reject) => { let data = null, err = null; promise.then(response => { data = response; }, reason => {...

``` let mergeObject = function (obj1, obj2) { if (Object.prototype.toString.call(obj1) !== '[object Object]' || Object.prototype.toString.call(obj2) !== '[object Object]') { return obj2; } let res = {...obj1} for (let key of...