UNPKG

@datalayer/core

Version:
22 lines (21 loc) 642 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ import { adjectives, animals, uniqueNamesGenerator } from 'unique-names-generator'; /** * Kernel snapshot description configuration. */ const KERNEL_SNAPSHOT_DESCRIPTION_CONFIGURATION = { dictionaries: [adjectives, animals], separator: '-' }; /** * Create an unique human readable kernel snapshot name. * * @param suffix Name prefix * @returns The kernel snapshot name */ export function createRuntimeSnapshotName(suffix) { return `${uniqueNamesGenerator(KERNEL_SNAPSHOT_DESCRIPTION_CONFIGURATION)}-${suffix}`; }