File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,9 @@ return /******/ (function(modules) { // webpackBootstrap
84
84
var isObject = _jsData . utils . isObject ;
85
85
var isSorN = _jsData . utils . isSorN ;
86
86
var isString = _jsData . utils . isString ;
87
- var removeCircular = _jsData . utils . removeCircular ;
88
- var resolve = _jsData . utils . resolve ;
87
+ var
88
+ // removeCircular,
89
+ resolve = _jsData . utils . resolve ;
89
90
var reject = _jsData . utils . reject ;
90
91
var toJson = _jsData . utils . toJson ;
91
92
@@ -308,9 +309,9 @@ return /******/ (function(modules) { // webpackBootstrap
308
309
if ( _this . defaults . forceTrailingSlash && config . url [ config . url . length - 1 ] !== '/' ) {
309
310
config . url += '/' ;
310
311
}
311
- if ( _typeof ( config . data ) === 'object' ) {
312
- config . data = removeCircular ( config . data ) ;
313
- }
312
+ // if (typeof config.data === 'object') {
313
+ // config.data = removeCircular(config.data)
314
+ // }
314
315
config . method = config . method . toUpperCase ( ) ;
315
316
var suffix = config . suffix || _this . defaults . suffix ;
316
317
if ( suffix && config . url . substr ( config . url . length - suffix . length ) !== suffix ) {
Original file line number Diff line number Diff line change @@ -134,9 +134,9 @@ class DSHttpAdapter {
134
134
if ( _this . defaults . forceTrailingSlash && config . url [ config . url . length - 1 ] !== '/' && ! config . urlOverride ) {
135
135
config . url += '/'
136
136
}
137
- if ( typeof config . data === 'object' ) {
138
- config . data = removeCircular ( config . data )
139
- }
137
+ // if (typeof config.data === 'object') {
138
+ // config.data = removeCircular(config.data)
139
+ // }
140
140
config . method = config . method . toUpperCase ( )
141
141
let suffix = config . suffix || _this . defaults . suffix
142
142
if ( suffix && config . url . substr ( config . url . length - suffix . length ) !== suffix && ! config . urlOverride ) {
You can’t perform that action at this time.
0 commit comments