patches: Make $self more robust

This commit is contained in:
Vendicated 2023-03-02 21:16:03 +01:00
parent ab8c93fbac
commit 5e2ec368ad
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905

View file

@ -27,9 +27,13 @@ export function canonicalizeMatch(match: RegExp | string) {
return new RegExp(canonSource, match.flags);
}
export function canonicalizeReplace(replace: string | ReplaceFn, pluginName: string) {
if (typeof replace === "function") return replace;
return replace.replaceAll("$self", `Vencord.Plugins.plugins.${pluginName}`);
export function canonicalizeReplace(replace: string | ReplaceFn, pluginName: string): string | ReplaceFn {
const self = `Vencord.Plugins.plugins[${JSON.stringify(pluginName)}]`;
if (typeof replace !== "function")
return replace.replaceAll("$self", self);
return (...args) => replace(...args).replaceAll("$self", self);
}
export function canonicalizeDescriptor<T>(descriptor: TypedPropertyDescriptor<T>, canonicalize: (value: T) => T) {