FIX current can be undefined in test

This commit is contained in:
Norbert de Langen 2019-01-17 03:03:50 +01:00
parent 8a0c29dd21
commit a2679be97f

View File

@ -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 };