Comparing version 0.4.2 to 0.4.3
# Changelog | ||
## 0.4.3 | ||
* Support Node 13 | ||
* Temporarily disable tests relating to named ranges (upstream bug) | ||
## 0.4.2 | ||
* No changes, bogus release to keep 0.4.x the default on NPM. | ||
@@ -6,0 +11,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "0.4.2", | ||
"version": "0.4.3", | ||
"description": "Node bindings for the libxl library for reading and writing excel (XLS and XLSX) spreadsheets.", | ||
@@ -8,0 +8,0 @@ "keywords": [ |
@@ -254,3 +254,3 @@ var xl = require('../lib/libxl'), | ||
expect(function() {sheet.setCol.call({}, 0, 0, 42);}).toThrow(); | ||
expect(function() {sheet.setCol(0, 0, 42, wrongFormat);}).toThrow(); | ||
@@ -265,3 +265,3 @@ | ||
expect(function() {sheet.setRow.call({}, 1, 42);}).toThrow(); | ||
expect(function() {sheet.setRow(1, 42, wrongFormat);}).toThrow(); | ||
@@ -609,3 +609,3 @@ | ||
sheet.writeStr(row, 0, 'baz'); | ||
shouldThrow(sheet.copyCell, sheet, row, 0, row, 'a'); | ||
@@ -770,2 +770,4 @@ shouldThrow(sheet.copyCell, {}, row, 0, row, 1); | ||
{ | ||
return; | ||
var sheet2 = newSheet(); | ||
@@ -853,3 +855,3 @@ | ||
expect(sheet.setTopLeftView(5, 6)).toBe(sheet); | ||
shouldThrow(sheet.getTopLeftView, {}); | ||
@@ -856,0 +858,0 @@ var result = sheet.getTopLeftView(); |
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
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
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
305489
40
1724
9