Remove console.log

This commit is contained in:
Gregory Schier
2025-05-28 13:14:46 -07:00
parent 399cd35b2b
commit bbf2b6dec0

View File

@@ -14,7 +14,6 @@ export const plugin: PluginDefinition = {
try {
const doc = new DOMParser().parseFromString(String(args.values.input), 'text/xml');
let result = xpath.select(String(args.values.query), doc, false);
console.log("RESULT", result);
if (Array.isArray(result)) {
return String(result.map(c => String(c.firstChild))[0] ?? '');
} else if (result instanceof Node) {