Skip to content

Commit 971fea4

Browse files
committed
perf: use index access for strings
1 parent e1e5a33 commit 971fea4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/history/common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export function normalizeBase(base?: string): string {
162162
// ensure leading slash when it was removed by the regex above avoid leading
163163
// slash with hash because the file could be read from the disk like file://
164164
// 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
166166

167167
// remove the trailing slash so all other method can just do `base + fullPath`
168168
// to build an href

src/history/html5.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function createCurrentLocation(
3939
if (hashPos > -1) {
4040
// prepend the starting slash to hash so the url starts with /#
4141
let pathFromHash = hash.slice(1)
42-
if (pathFromHash.charAt(0) !== '/') pathFromHash = '/' + pathFromHash
42+
if (pathFromHash[0] !== '/') pathFromHash = '/' + pathFromHash
4343
return normalizeHistoryLocation(stripBase(pathFromHash, ''))
4444
}
4545
const path = stripBase(pathname, base)

src/utils/location.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ export function stringifyURL(
9595
* @param base - base to strip off
9696
*/
9797
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
99100
return pathname.replace(base, '') || '/'
100101
}
101102

0 commit comments

Comments
 (0)