We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbb279a commit 5cb9fdeCopy full SHA for 5cb9fde
1 file changed
10010/10010.js
@@ -221,7 +221,7 @@ function init() {
221
}
222
log = (message) => console.log(message)
223
get = (url, cb) => {
224
- console.log(url)
+
225
if (url['headers'].hasOwnProperty('Content-Length')) delete url['headers']['Content-Length']
226
if (isSurge()) {
227
$httpClient.get(url, cb)
@@ -230,6 +230,7 @@ function init() {
230
url.method = 'GET'
231
$task.fetch(url).then((resp) => cb(null, resp, resp.body))
232
233
+ console.log(url)
234
235
post = (url, cb) => {
236
0 commit comments