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

@mduan/gsheet-utils

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mduan/gsheet-utils - npm Package Compare versions

Comparing version 1.0.23 to 1.0.24

2

package.json
{
"name": "@mduan/gsheet-utils",
"version": "1.0.23",
"version": "1.0.24",
"description": "",

@@ -5,0 +5,0 @@ "main": "src/index.ts",

@@ -135,3 +135,4 @@ import isEqual from 'lodash/isEqual';

for (let columnIdx = 0; columnIdx < range.getNumColumns(); columnIdx += 1) {
outputRow.push(formulas[rowIdx][columnIdx] ?? values[rowIdx][columnIdx]);
// NOTE: if there isn't a formula for a cell, it will be an empty string in `formulas`
outputRow.push(formulas[rowIdx][columnIdx] || values[rowIdx][columnIdx]);
}

@@ -199,2 +200,4 @@ output.push(outputRow);

.filter((rowValues) => {
// TODO: this is assuming require columns are always left most. should really be using rangeColumns mapping
// to get the column indices of the required columns
return rowValues.slice(0, requiredColumnHeaders.length).every((requiredValue) => Boolean(requiredValue));

@@ -201,0 +204,0 @@ });

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