UNPKG

@datalayer/core

Version:

[![Datalayer](https://assets.datalayer.tech/datalayer-25.svg)](https://datalayer.io)

15 lines (14 loc) 358 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ export const asContactEvent = (ce) => { return { id: ce.uid, message: ce.message ?? '', subType: ce.subType, detailsJson: ce.detailsJson ?? '', token: ce.token, eventDate: ce.eventDate, }; };