Merge ../node-fetch-cookies
This commit is contained in:
		@@ -27,7 +27,6 @@ export default class Cookie {
 | 
				
			|||||||
        [this.name, this.value] = splitted[0].split("=");
 | 
					        [this.name, this.value] = splitted[0].split("=");
 | 
				
			||||||
        if(this.value.startsWith("\"") && this.value.endsWith("\""))
 | 
					        if(this.value.startsWith("\"") && this.value.endsWith("\""))
 | 
				
			||||||
            this.value = this.value.slice(1, -1);
 | 
					            this.value = this.value.slice(1, -1);
 | 
				
			||||||
        this.value = this.value;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for(let i = 1; i < splitted.length; i++) {
 | 
					        for(let i = 1; i < splitted.length; i++) {
 | 
				
			||||||
            let [k, v] = splitted[i].split("=");
 | 
					            let [k, v] = splitted[i].split("=");
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user