Ruby - Control Flow
You want to write a method that returns early if a user is not authorized, otherwise processes data. Which guard clause is best?
def process(user, data)
# guard clause here
"Processing data for #{user}"
end