New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

excel

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

excel - npm Package Compare versions

Comparing version 0.0.60 to 0.1.0

10

excelParser.js

@@ -140,4 +140,10 @@ var Promise = require('node-promise'),

if (cell.type == 's') value = strings.get('//a:si[' + (parseInt(value) + 1) + ']//a:t', ns).text();
if (cell.type == 's') {
values = strings.find('//a:si[' + (parseInt(value) + 1) + ']//a:t[not(ancestor::a:rPh)]', ns)
value = "";
for (var i = 0; i < values.length; i++) {
value += values[i].text();
}
}
data[cell.row - d[0].row][cell.column - d[0].column] = value;

@@ -144,0 +150,0 @@ });

2

package.json
{
"name": "excel",
"version": "0.0.60",
"version": "0.1.0",
"description": "Web and node.js spreadsheet library. Supports xlsx, csv, tsv (or any simple delimited file) for now.",

@@ -5,0 +5,0 @@ "main": "excelParser.js",

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