From b91ad6ef1d567b0eb7ccea1349c9cd4892ef2111 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:34:24 -0400 Subject: [PATCH] Remove Unused return --- src/equicordplugins/moreCommands/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/equicordplugins/moreCommands/index.ts b/src/equicordplugins/moreCommands/index.ts index bc35d4d2..c3b791b4 100644 --- a/src/equicordplugins/moreCommands/index.ts +++ b/src/equicordplugins/moreCommands/index.ts @@ -354,8 +354,6 @@ export default definePlugin({ const normalize = findOption(opts, "normalize") as string | undefined; const reverse = findOption(opts, "reverse") as string | undefined; - if (!transform || !text) return; - if (transform !== "same") { text = (text as any)[transform]?.call(text) ?? text; }