UNPKG

@datalayer/core

Version:
18 lines (17 loc) 401 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ export const newJupyterLabUserMock = (name) => { const user = { identity: { username: name, name: name, display_name: name, initials: name, color: "yellow", }, permissions: {} }; return user; };