use a concise approach to fetch the last element
This commit is contained in:
@@ -991,7 +991,7 @@
|
|||||||
try {
|
try {
|
||||||
let parsedCurl = parseCurlCommand(text);
|
let parsedCurl = parseCurlCommand(text);
|
||||||
this.url = parsedCurl.url.replace(/"/g,"").replace(/'/g,"");
|
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.path = "";
|
||||||
this.headers = [];
|
this.headers = [];
|
||||||
for (const key of Object.keys(parsedCurl.headers)) {
|
for (const key of Object.keys(parsedCurl.headers)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user