Prepare a message as a ISO buffer before sending it to the ISO capable server/client
an object that will constrain the type of the fields that can be used. It will be used while preparing the buffer
the message that we want to write in an ISO format
a buffer to the ISO message
const iso = Buffer.from("0100ca......", "hex");const message = parse(isoDefinition, buffer);message.content[2] = "576aze45623";const newIso = prepare(isoDefinition, message); Copy
const iso = Buffer.from("0100ca......", "hex");const message = parse(isoDefinition, buffer);message.content[2] = "576aze45623";const newIso = prepare(isoDefinition, message);
Prepare a message as a ISO buffer before sending it to the ISO capable server/client