Comparing version 0.0.4 to 0.0.5
@@ -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 @@ }); |
{ | ||
"name": "dockin", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"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
7834
155