From ff666f7038bfcbe55439116fe505d623235c3efd Mon Sep 17 00:00:00 2001 From: TN <128629064+whatisagi@users.noreply.github.com> Date: Fri, 18 Apr 2025 15:34:49 -0400 Subject: [PATCH] Remove unused args in urlTransform Signed-off-by: TN <128629064+whatisagi@users.noreply.github.com> --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 6e3fdd2..2da5c74 100644 --- a/lib/index.js +++ b/lib/index.js @@ -379,7 +379,7 @@ function post(tree, options) { const value = node.properties[key] const test = urlAttributes[key] if (test === null || test.includes(node.tagName)) { - node.properties[key] = urlTransform(String(value || ''), key, node) + node.properties[key] = urlTransform(String(value || '')) } } }