({ type, updateId, extraId }: SyncAck)
| 14 | }; |
| 15 | |
| 16 | export const toAck = ({ type, updateId, extraId }: SyncAck) => |
| 17 | [type, updateId, extraId].filter((v) => v !== undefined).join('|'); |
| 18 | |
| 19 | export const mapJsonLine = (object: unknown) => JSON.stringify(object) + '\n'; |
| 20 |
no outgoing calls
no test coverage detected