@datalayer/core
Version:
[](https://datalayer.io)
13 lines (12 loc) • 385 B
JavaScript
/*
* 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;
}