Personally I find all those function calls harder to debug/review. I am perfectly capable of interpreting most non-complex small code blocks with a glance. If someone takes that and replaces with a function it usually forces me to step into function to understand what it really does. Function name wont be as meaningful as the actual code.
Forcing stuff to sub functions just hiding information away from the people that reads code.
Forcing stuff to sub functions just hiding information away from the people that reads code.