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

streaksheet

Package Overview
Dependencies
Maintainers
4
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

streaksheet - npm Package Compare versions

Comparing version 0.8.2 to 0.8.3

8

build/src/SectionRowMatcher.js

@@ -49,3 +49,9 @@ "use strict";

value: function getSectionRow(row) {
return this.results[row];
var sectionRow = this.results[row];
if (!sectionRow) {
throw new Error("getSectionRow called with invalid row index: ".concat(row));
}
return sectionRow;
}

@@ -52,0 +58,0 @@ }]);

4

build/src/useSheetData.js

@@ -81,4 +81,4 @@ "use strict";

return {
start: adjustNegativeSectionOrRow(sectionRowMatcher.getSectionRow(Math.max(0, visibleRowStartIndex - bufferAmount))),
stop: adjustNegativeSectionOrRow(sectionRowMatcher.getSectionRow(Math.min(totalRowCount - 1, visibleRowStopIndex + bufferAmount)))
start: adjustNegativeSectionOrRow(sectionRowMatcher.getSectionRow(Math.min(totalRowCount - 1, Math.max(0, visibleRowStartIndex - bufferAmount)))),
stop: adjustNegativeSectionOrRow(sectionRowMatcher.getSectionRow(Math.min(totalRowCount - 1, Math.max(0, visibleRowStopIndex + bufferAmount))))
};

@@ -85,0 +85,0 @@ } // TODO if we want to support multiple data handlers, loop over all handlers here

{
"name": "streaksheet",
"version": "0.8.2",
"version": "0.8.3",
"author": "Chris Cowan <agentme49@gmail.com>",

@@ -5,0 +5,0 @@ "license": "MIT",

Sorry, the diff of this file is not supported yet

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