Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 179bae8 commit e5c179dCopy full SHA for e5c179d
1 file changed
javascript/ql/test/library-tests/frameworks/ClientRequests/tst.js
@@ -314,3 +314,9 @@ function usePolyfill() {
314
return response.text()
315
})
316
}
317
+
318
+function useSuperagent(url){
319
+ superagent('GET', url); // Not flagged
320
+ superagent.del(url); // Not flagged
321
+ superagent.agent().post(url).send(data); // Not flagged
322
+}
0 commit comments