I need to create a reusable function that does some data cleaning on a number of `changesetArrays` before persisting them in the db. So I was really happy to read about Sync Functions, but they seem to be discontinued?
From what I’ve seen, Sync Functions were more of an experimental/internal concept and the direction seems to have shifted toward using standard JS transformers, shared queries, or utility modules instead. The idea itself doesn’t appear completely abandoned, but it likely evolved into other reusable workflow patterns.
For your use case, a shared transformer/helper function for cleaning changesetArrays before persistence is probably the most practical approach right now.