Remove Unused return
Some checks are pending
Test / Test (push) Waiting to run

This commit is contained in:
thororen1234 2025-06-19 18:34:24 -04:00
parent 4f25affbda
commit b91ad6ef1d
No known key found for this signature in database

View file

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