remove unnecessary line

This commit is contained in:
2019-07-24 16:39:20 +02:00
parent ef39af34a9
commit 4a84e2ad7c

View File

@ -27,7 +27,6 @@ export default class Cookie {
[this.name, this.value] = splitted[0].split("=");
if(this.value.startsWith("\"") && this.value.endsWith("\""))
this.value = this.value.slice(1, -1);
this.value = this.value;
for(let i = 1; i < splitted.length; i++) {
let [k, v] = splitted[i].split("=");