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

dockin

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

dockin - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

5

index.js

@@ -102,5 +102,6 @@ 'use strict';

let findRowByColumnTitleThatIncludesText = _.curry((columTitle, text) => {
text = text.toLowerCase();
if(text) text = text.toLowerCase();
return searchRowByColumnTitle((value) => {
return _.includes(value.toLowerCase(), text);
if(value) value = value.toLowerCase();
return _.includes(value, text);
}, columTitle);

@@ -107,0 +108,0 @@ });

2

package.json
{
"name": "dockin",
"version": "0.0.4",
"version": "0.0.5",
"description": "intuitive xlsx spreadsheet parser wrapper",

@@ -5,0 +5,0 @@ "main": "index.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