UNPKG

@datalayer/core

Version:

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

13 lines (12 loc) 385 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ import { PageConfig } from '@jupyterlab/coreutils'; let _insideJupyterLab = null; export function isInsideJupyterLab() { if (_insideJupyterLab === null) { _insideJupyterLab = PageConfig.getOption('appName') === 'JupyterLab'; } return _insideJupyterLab; }