diff --git a/app/src/lib/node-registry/debugNode.ts b/app/src/lib/node-registry/debugNode.ts index f86fcd5..224f9e6 100644 --- a/app/src/lib/node-registry/debugNode.ts +++ b/app/src/lib/node-registry/debugNode.ts @@ -1,15 +1,3 @@ -const data: Record = {}; - -export function clearDebugData() { - for (const key in data) { - delete data[key]; - } -} - -export function getDebugData() { - return { ...data }; -} - export const debugNode = { id: 'max/plantarium/debug', inputs: { @@ -17,5 +5,7 @@ export const debugNode = { type: '*' } }, - execute() {} + execute(_data: Int32Array): Int32Array { + return _data; + } } as const;