Prepare a message as a ISO buffer before sending it to the ISO capable server/client
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);
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
Generated using TypeDoc
Prepare a message as a ISO buffer before sending it to the ISO capable server/client
Returns
a buffer to the ISO message
Example