hof 21.0.13-axios-beta → 21.0.14-axios-beta
Sign up to get free protection for your applications and to get access to all the features.
- package/model/index.js +6 -0
- package/package.json +1 -1
package/model/index.js
CHANGED
@@ -154,9 +154,15 @@ module.exports = class Model extends EventEmitter {
|
|
154
154
|
this._request(settings)
|
155
155
|
.then(response => {
|
156
156
|
return this.handleResponse(response, (error, data, status) => {
|
157
|
+
console.log("$$$$$$$$$$4RESPONSE")
|
158
|
+
console.log(response.headers)
|
159
|
+
console.log("$$$$$$$$$$4RESPONSE")
|
157
160
|
if (error) {
|
158
161
|
error.headers = response.headers;
|
159
162
|
}
|
163
|
+
console.log("$$$$$$$$$$4RESPONSE")
|
164
|
+
console.log(response.headers)
|
165
|
+
console.log("$$$$$$$$$$4RESPONSE")
|
160
166
|
_callback(error, data, status);
|
161
167
|
});
|
162
168
|
}).catch(err => {
|