use a concise approach to fetch the last element

This commit is contained in:
jamesgeorge007
2019-09-23 23:50:05 +05:30
parent 20a8296cd5
commit 74d2119f31

View File

@@ -991,7 +991,7 @@
try {
let parsedCurl = parseCurlCommand(text);
this.url = parsedCurl.url.replace(/"/g,"").replace(/'/g,"");
this.url = this.url[this.url.length -1] == '/' ? this.url.slice(0, -1): this.url;
this.url = this.url.slice(-1).pop() == '/' ? this.url.slice(0, -1): this.url;
this.path = "";
this.headers = [];
for (const key of Object.keys(parsedCurl.headers)) {