There are multiple Form methods that flatten and stitch the fields to perform update operations. The flattening/stitching part is really repetitive, and can be isolated into a high-order function.
Why:
This will decrease the amount of code to comprehend to understand a method. It will also make class methods smaller, and more maintainable.
What:
There are multiple Form methods that flatten and stitch the fields to perform update operations. The flattening/stitching part is really repetitive, and can be isolated into a high-order function.
Why:
This will decrease the amount of code to comprehend to understand a method. It will also make class methods smaller, and more maintainable.
How: