Skip to content

Commit

Permalink
fix object node output
Browse files Browse the repository at this point in the history
  • Loading branch information
au-re committed Aug 27, 2023
1 parent 783b67b commit f68e2a0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/@pufflig/ps-nodes/src/data/object/object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import { Node } from "@pufflig/ps-types";

export const objectNode: Node = {
...nodes[nodeTypes.objectNodeType],
execute: async (i) => i,
execute: async (inputs) => {
return {
object: inputs,
};
},
parseInput: async (i) => i,
};

0 comments on commit f68e2a0

Please sign in to comment.