fix: parseCDNURL correct arguments

This commit is contained in:
MARCROCK22 2024-04-06 12:15:03 -04:00
parent 7929c9ac9a
commit 22b33127f7

View File

@ -50,8 +50,7 @@ export const CDNRouter = {
routeResult = `${lastRoute}/${value}`;
return parseCDNURL(routeResult, options);
}
// @ts-expect-error
return parseCDNURL(routeResult, value);
return parseCDNURL(routeResult, options);
};
}
return this.createProxy([...route, key]);