UNPKG

@datalayer/core

Version:

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

14 lines (13 loc) 349 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ export function asRuntimeSnapshot(s) { const { uid, updated_at, format_version, ...others } = s; return { ...others, id: uid, updatedAt: new Date(updated_at), formatVersion: format_version, }; }