@@ -82,7 +82,7 @@ export interface ParseOptions {
82
82
*
83
83
* @default decodeURIComponent
84
84
*/
85
- decode ?: ( str : string ) => string ;
85
+ decode ?: ( str : string ) => string | undefined ;
86
86
}
87
87
88
88
/**
@@ -133,8 +133,8 @@ export function parse(
133
133
valEndIdx -- ;
134
134
}
135
135
136
- const val = str . slice ( valStartIdx , valEndIdx ) ;
137
- obj [ key ] = tryDecode ( val , dec ) ;
136
+ const value = dec ( str . slice ( valStartIdx , valEndIdx ) ) ;
137
+ if ( value !== undefined ) obj [ key ] = value ;
138
138
}
139
139
140
140
index = endIdx + 1 ;
@@ -366,8 +366,14 @@ export function serialize(
366
366
/**
367
367
* URL-decode string value. Optimized to skip native call when no %.
368
368
*/
369
- function decode ( str : string ) : string {
370
- return str . indexOf ( "%" ) !== - 1 ? decodeURIComponent ( str ) : str ;
369
+ function decode ( str : string ) : string | undefined {
370
+ if ( str . indexOf ( "%" ) === - 1 ) return str ;
371
+
372
+ try {
373
+ return decodeURIComponent ( str ) ;
374
+ } catch ( e ) {
375
+ return str ;
376
+ }
371
377
}
372
378
373
379
/**
@@ -376,14 +382,3 @@ function decode(str: string): string {
376
382
function isDate ( val : any ) : val is Date {
377
383
return __toString . call ( val ) === "[object Date]" ;
378
384
}
379
-
380
- /**
381
- * Try decoding a string using a decoding function.
382
- */
383
- function tryDecode ( str : string , decode : ( str : string ) => string ) : string {
384
- try {
385
- return decode ( str ) ;
386
- } catch ( e ) {
387
- return str ;
388
- }
389
- }
0 commit comments