1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2026-03-16 15:45:45 +01:00

Killed the nbVisibleRows property on TableFilter

This commit is contained in:
Max Guglielmi 2016-05-26 14:36:36 +10:00
commit b23aeea53a
16 changed files with 10609 additions and 54 deletions

View file

@ -38,7 +38,7 @@ export const rgxEsc = text => {
* @param {String} text
* @return {String} string
*/
export const matchCase = (text, caseSensitive) => {
export const matchCase = (text, caseSensitive = false) => {
if (!caseSensitive) {
return text.toLowerCase();
}