@nteract/commutable
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -1,1 +0,1 @@ | ||
module.exports = require('./lib'); | ||
module.exports = require("./lib"); |
{ | ||
"name": "@nteract/commutable", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "library for immutable notebook operations", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -218,3 +218,6 @@ /* @flow */ | ||
cell.source.map(line => | ||
Array(cell.level).join("#").concat(" ").concat(line) | ||
Array(cell.level) | ||
.join("#") | ||
.concat(" ") | ||
.concat(line) | ||
) | ||
@@ -221,0 +224,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
75697
1508