File tree 2 files changed +0
-17
lines changed
2 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -85,15 +85,4 @@ describe('parseQuery', () => {
85
85
86
86
expect ( 'decoding "%"' ) . toHaveBeenWarnedTimes ( 1 )
87
87
} )
88
-
89
- it ( 'ignores __proto__' , ( ) => {
90
- const query = parseQuery ( '__proto__=1' )
91
- expect ( query . __proto__ ) . toEqual ( Object . prototype )
92
- expect ( query . constructor ) . toEqual ( Object )
93
- } )
94
-
95
- it ( 'ignores build-in methods' , ( ) => {
96
- const query = parseQuery ( 'toString=1' )
97
- expect ( query . toString ) . toEqual ( Object . prototype . toString )
98
- } )
99
88
} )
Original file line number Diff line number Diff line change @@ -57,12 +57,6 @@ export function parseQuery(search: string): LocationQuery {
57
57
// allow the = character
58
58
let eqPos = searchParam . indexOf ( '=' )
59
59
let key = decode ( eqPos < 0 ? searchParam : searchParam . slice ( 0 , eqPos ) )
60
-
61
- // this ignores ?__proto__&toString
62
- if ( Object . prototype . hasOwnProperty ( key ) ) {
63
- continue
64
- }
65
-
66
60
let value = eqPos < 0 ? null : decode ( searchParam . slice ( eqPos + 1 ) )
67
61
68
62
if ( key in query ) {
You can’t perform that action at this time.
0 commit comments