Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

libxl

Package Overview
Dependencies
30
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.2 to 0.4.3

specs/output/writetest.xls

7

CHANGELOG.md
# 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 @@

2

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc