axios-curlirize
Advanced tools
Comparing version 1.3.0 to 1.3.1
{ | ||
"name": "axios-curlirize", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Axios third-party module to print all axios requests as curl commands in the console.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -80,3 +80,4 @@ export class CurlHelper { | ||
if (this.getQueryString() != "") { | ||
url = url.substr(0, url.length - 1) + this.getQueryString(); | ||
url = (url.charAt(url.length - 1) == '/') ? url.substr(0, url.length - 1) : url; | ||
url += this.getQueryString(); | ||
} | ||
@@ -83,0 +84,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16004
284