File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ export function normalizeBase(base?: string): string {
162
162
// ensure leading slash when it was removed by the regex above avoid leading
163
163
// slash with hash because the file could be read from the disk like file://
164
164
// and the leading slash would cause problems
165
- if ( base . charAt ( 0 ) !== '/' && base . charAt ( 0 ) !== '#' ) base = '/' + base
165
+ if ( base [ 0 ] !== '/' && base [ 0 ] !== '#' ) base = '/' + base
166
166
167
167
// remove the trailing slash so all other method can just do `base + fullPath`
168
168
// to build an href
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ function createCurrentLocation(
39
39
if ( hashPos > - 1 ) {
40
40
// prepend the starting slash to hash so the url starts with /#
41
41
let pathFromHash = hash . slice ( 1 )
42
- if ( pathFromHash . charAt ( 0 ) !== '/' ) pathFromHash = '/' + pathFromHash
42
+ if ( pathFromHash [ 0 ] !== '/' ) pathFromHash = '/' + pathFromHash
43
43
return normalizeHistoryLocation ( stripBase ( pathFromHash , '' ) )
44
44
}
45
45
const path = stripBase ( pathname , base )
Original file line number Diff line number Diff line change @@ -95,7 +95,8 @@ export function stringifyURL(
95
95
* @param base - base to strip off
96
96
*/
97
97
export function stripBase ( pathname : string , base : string ) : string {
98
- if ( ! base || pathname . indexOf ( base ) !== 0 ) return pathname
98
+ // no base or base is not found at the begining
99
+ if ( ! base || pathname . indexOf ( base ) ) return pathname
99
100
return pathname . replace ( base , '' ) || '/'
100
101
}
101
102
You can’t perform that action at this time.
0 commit comments