Operation request: Carry out multiple operations on the same input
- Dominant language
- JavaScript
- Stars
- 35.8k
- Forks
- 4.1k
- Avg merge
- 2d 26m
- Merged PRs (30d)
- 33
Description
### Summary
A Flow Control operation, similar to Fork, but with the goal of carrying out the subsequent operations in the recipe on the same input, rather than chaining them together and operating on the output of the previous operation as normal.
### Example
Input
```
Test
```
Recipe
```
Branch (or some other more suitable name)
To Hex
To Base64
To Binary
```
Output
```
54 65 73 74
VGVzdA==
01010100 01100101 01110011 01110100
```
I don't really like the name 'Branch' because it's too close to 'Fork' and would lead to confusion, but I can't think of a more suitable name at the moment.
Contributor guide
Research direction
Start by reviewing the existing Fork flow-control operation and the recipe execution behavior described in the issue. Define a suitable operation name and confirm how multiple subsequent operations should receive the original input; done means one recipe produces the hexadecimal, Base64, and binary results shown for the sample input.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- web-dev
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100