Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jupyterlab/coreutils

Package Overview
Dependencies
Maintainers
5
Versions
355
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/coreutils - npm Package Compare versions

Comparing version 0.7.0 to 0.7.1

9

lib/pageconfig.d.ts

@@ -23,2 +23,11 @@ /**

/**
* Set global configuration data for the Jupyter application.
*
* @param name - The name of the configuration option.
* @param value - The value to set the option to.
*
* @returns The last config value or an empty string if it doesn't exist.
*/
function setOption(name: string, value: string): string;
/**
* Get the base url for a Jupyter application.

@@ -25,0 +34,0 @@ */

@@ -71,2 +71,16 @@ "use strict";

/**
* Set global configuration data for the Jupyter application.
*
* @param name - The name of the configuration option.
* @param value - The value to set the option to.
*
* @returns The last config value or an empty string if it doesn't exist.
*/
function setOption(name, value) {
var last = getOption(name);
configData[name] = value;
return last;
}
PageConfig.setOption = setOption;
/**
* Get the base url for a Jupyter application.

@@ -73,0 +87,0 @@ */

2

package.json
{
"name": "@jupyterlab/coreutils",
"version": "0.7.0",
"version": "0.7.1",
"description": "JupyterLab - Core Utilities",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc