Comparing version 0.0.3 to 0.0.4
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7794
154