Skip to content
This repository was archived by the owner on May 29, 2025. It is now read-only.

Commit bbf2b6d

Browse files
committed
Remove console.log
1 parent 399cd35 commit bbf2b6d

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

  • plugins/template-function-xml/src

plugins/template-function-xml/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export const plugin: PluginDefinition = {
1414
try {
1515
const doc = new DOMParser().parseFromString(String(args.values.input), 'text/xml');
1616
let result = xpath.select(String(args.values.query), doc, false);
17-
console.log("RESULT", result);
1817
if (Array.isArray(result)) {
1918
return String(result.map(c => String(c.firstChild))[0] ?? '');
2019
} else if (result instanceof Node) {

0 commit comments

Comments
 (0)