This namespace contains 17 node(s).
Available Nodes
- Chunk - Group every N items into a list and emit as a batch. Trailing partial batch i…
- Collect - Collect items until the end of the stream and return them as a list.
- Count - Emit the total number of items when the stream ends.
- Distinct - Drop duplicate items from a stream. Optional key expression for grouping.
- Drop - Skip the first N items of a stream, pass the rest through.
- Drop While - Drop items while a predicate is truthy, then pass everything after.
- Filter (Code) - Pass items through when a JavaScript predicate returns truthy.
- Filter Equal - Pass items through only when they equal a target value.
- For Each - Iterate over a list and emit each item sequentially.
- If - Conditionally executes one of two branches based on a condition.
- Last - Emit only the final item of a stream.
- Reroute - Pass data through unchanged for tidier workflow layouts.
- Switch - Multi-branch routing: match a value against cases and route to the matching o…
- Take - Pass through the first N items of a stream and stop.
- Take While - Pass items through while a predicate is truthy. Stops at the first failure.
- Tap - Passthrough that logs each item to the console as a side effect.
- Try / Catch - Error handling wrapper: passes the value through on success, or returns error…