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

@nteract/commutable

Package Overview
Dependencies
Maintainers
7
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nteract/commutable - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

4

lib/v4.js

@@ -227,2 +227,3 @@ "use strict";

function markdownCellToJS(immCell) {
// $FlowFixMe: With Immutable we can not properly type this
var cell = immCell.toObject();

@@ -294,2 +295,3 @@

function codeCellToJS(immCell) {
// $FlowFixMe: With Immutable we can not properly type this
var cell = immCell.toObject();

@@ -307,2 +309,3 @@

function rawCellToJS(immCell) {
// $FlowFixMe: With Immutable we can not properly type this
var cell = immCell.toObject();

@@ -332,2 +335,3 @@

function toJS(immnb) {
// $FlowFixMe: With Immutable we can not properly type this
var plainNotebook = immnb.toObject();

@@ -334,0 +338,0 @@

2

package.json
{
"name": "@nteract/commutable",
"version": "1.1.3",
"version": "1.1.4",
"description": "library for immutable notebook operations",

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

@@ -323,2 +323,3 @@ /* @flow */

function markdownCellToJS(immCell: ImmutableCell): MarkdownCell {
// $FlowFixMe: With Immutable we can not properly type this
const cell: Cell = immCell.toObject();

@@ -400,2 +401,3 @@

function codeCellToJS(immCell: ImmutableCell): CodeCell {
// $FlowFixMe: With Immutable we can not properly type this
const cell: IntermediateCodeCell = immCell.toObject();

@@ -413,2 +415,3 @@

function rawCellToJS(immCell: ImmutableCell): RawCell {
// $FlowFixMe: With Immutable we can not properly type this
const cell: Cell = immCell.toObject();

@@ -438,2 +441,3 @@

export function toJS(immnb: ImmutableNotebook): Notebook {
// $FlowFixMe: With Immutable we can not properly type this
const plainNotebook: PlainNotebook = immnb.toObject();

@@ -440,0 +444,0 @@

Sorry, the diff of this file is not supported yet

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