Hi everyone Maybe a basic question How to skip a...
# suitescript
e
Hi everyone Maybe a basic question How to skip an an element in a Map Reduce script? The element is already generated in the inputStage, and after some validation of the current element in the map or the reduce stage, I want to stop processing that element and continue with the next one.
b
your entrypoint is a function, the most common way to stop a function is to return early
e
Thanks!