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

node-red-contrib-excelsheets

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-excelsheets - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json
{
"name": "node-red-contrib-excelsheets",
"version": "1.1.0",
"version": "1.1.1",
"description": "writes multi-sheet excel files",

@@ -5,0 +5,0 @@ "scripts": {

@@ -66,2 +66,3 @@ # node-red-contrib-excelsheets

## Change Log
* 1.1.1 - Fixed problem with "Standard" input.
* 1.1.0 - Created "Flexible" input option that parses object keys as sheet names and recursively parses multi-level objects in the row data

@@ -68,0 +69,0 @@ * 1.0.5 - Updated docs to refer to correct msg property: filepath (not filename, )

@@ -22,3 +22,3 @@ module.exports = function (RED) {

}
if(isObject(msg.payload)){
if(isObject(msg.payload) && !Array.isArray(msg.payload)){
msg.payload = convertObjectToArray(msg.payload);

@@ -25,0 +25,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