export function pack(action) { return JSON.stringify(action); }; export function unpack (serial) { return JSON.parse(serial); }