File tree 2 files changed +3
-16
lines changed
2 files changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -124,14 +124,6 @@ export function parse(
124
124
let valStartIdx = startIndex ( str , eqIdx + 1 , endIdx ) ;
125
125
let valEndIdx = endIndex ( str , endIdx , valStartIdx ) ;
126
126
127
- if (
128
- str . charCodeAt ( valStartIdx ) === 0x22 /* " */ &&
129
- str . charCodeAt ( valEndIdx - 1 ) === 0x22 /* " */
130
- ) {
131
- valStartIdx ++ ;
132
- valEndIdx -- ;
133
- }
134
-
135
127
const value = dec ( str . slice ( valStartIdx , valEndIdx ) ) ;
136
128
obj [ key ] = value ;
137
129
}
Original file line number Diff line number Diff line change @@ -25,24 +25,19 @@ describe("cookie.parse(str)", function () {
25
25
26
26
it ( "should URL-decode values" , function ( ) {
27
27
expect ( cookie . parse ( 'foo="bar=123456789&name=Magic+Mouse"' ) ) . toEqual ( {
28
- foo : "bar=123456789&name=Magic+Mouse" ,
28
+ foo : ' "bar=123456789&name=Magic+Mouse"' ,
29
29
} ) ;
30
30
31
31
expect ( cookie . parse ( "email=%20%22%2c%3b%2f" ) ) . toEqual ( { email : ' ",;/' } ) ;
32
32
} ) ;
33
33
34
- it ( "should parse quoted values" , function ( ) {
35
- expect ( cookie . parse ( 'foo="bar"' ) ) . toEqual ( { foo : "bar" } ) ;
36
- expect ( cookie . parse ( 'foo=" a b c "' ) ) . toEqual ( { foo : " a b c " } ) ;
37
- } ) ;
38
-
39
34
it ( "should trim whitespace around key and value" , function ( ) {
40
- expect ( cookie . parse ( ' foo = "bar" ' ) ) . toEqual ( { foo : "bar" } ) ;
35
+ expect ( cookie . parse ( ' foo = "bar" ' ) ) . toEqual ( { foo : ' "bar"' } ) ;
41
36
expect ( cookie . parse ( " foo = bar ; fizz = buzz " ) ) . toEqual ( {
42
37
foo : "bar" ,
43
38
fizz : "buzz" ,
44
39
} ) ;
45
- expect ( cookie . parse ( ' foo = " a b c " ' ) ) . toEqual ( { foo : " a b c " } ) ;
40
+ expect ( cookie . parse ( ' foo = " a b c " ' ) ) . toEqual ( { foo : ' " a b c "' } ) ;
46
41
expect ( cookie . parse ( " = bar " ) ) . toEqual ( { "" : "bar" } ) ;
47
42
expect ( cookie . parse ( " foo = " ) ) . toEqual ( { foo : "" } ) ;
48
43
expect ( cookie . parse ( " = " ) ) . toEqual ( { "" : "" } ) ;
You can’t perform that action at this time.
0 commit comments