I have some data stored in JSON format that I need to slightly rearrange before sending it to the client. What should I name the function responsible for this reordering? Is serializeSomething a suitable choice? From what I understand, serialization involves converting data into a format that is easier to transfer over a network. Even though my data is already in JSON format, I just need to make some minor adjustments. Would calling it a serialization function be accurate? Or maybe another name would be more appropriate?