return message;
}
/\\(\\|x([0-9a-f]{2}))/gi,
(_match: string, op: string, hex?: string) => hex ? String.fromCharCode(parseInt(hex, 16)) : op,
);
}
function parseOsc633Payload(payload: string): Osc633Event | undefined {