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.3 to 0.0.4

2

example.js

@@ -14,3 +14,3 @@ 'use strict';

//console.log(_.keys(sheet));
let strategy = sheet.findRowByColumnTitleThatIncludesText('Control Titel', 'IT Strategie');
let strategy = sheet.findRowByColumnTitleThatIncludesText('Control Titel', 'It Strategie');
let columnTitles = sheet.getTitles();

@@ -17,0 +17,0 @@ //console.log(columnTitles);

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

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

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

{
"name": "dockin",
"version": "0.0.3",
"version": "0.0.4",
"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