mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
FIX current can be undefined in test
This commit is contained in:
parent
8a0c29dd21
commit
a2679be97f
@ -32,9 +32,9 @@ export const queryFromLocation = (location: { search: string }) => queryFromStri
|
||||
export const stringifyQuery = (query: object) => qs.stringify(query, { addQueryPrefix: true, encode: false });
|
||||
|
||||
export const getMatch = memoize(1000)((current: string, target: string, startsWith: boolean = true) => {
|
||||
const startsWithTarget = startsWith && current.startsWith(target);
|
||||
const startsWithTarget = current && startsWith && current.startsWith(target);
|
||||
const currentIsTarget = typeof target === 'string' && current === target;
|
||||
const matchTarget = target && current.match(target);
|
||||
const matchTarget = current && target && current.match(target);
|
||||
|
||||
if (startsWithTarget || currentIsTarget || matchTarget) {
|
||||
return { path: current };
|
||||
|
Loading…
x
Reference in New Issue
Block a user