@datalayer/core
Version:
**Datalayer Core**
15 lines (14 loc) • 360 B
JavaScript
/*
* Copyright (c) 2023-2025 Datalayer, Inc.
* Distributed under the terms of the Modified BSD License.
*/
export const asUserEvent = (u) => {
return {
id: u.uid,
message: u.message_t ?? '',
subType: u.sub_type_s,
detailsJson: u.details_json_t ?? '',
token: u.token_s,
eventDate: u.event_ts_dt,
};
};