(name string, transform func(input any) any)
| 266 | } |
| 267 | |
| 268 | func TransformFunction(name string, transform func(input any) any) *FunctionStep { |
| 269 | return SimpleFunction(name, func(input any) (any, error) { |
| 270 | return transform(input), nil |
| 271 | }) |
| 272 | } |
| 273 | |
| 274 | // ===== ConditionStep ===== |
| 275 |
nothing calls this directly
no test coverage detected