@nteract/commutable
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -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 @@ |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74804
1485