UNPKG

@maherunlocker/custom-react-table

Version:
13 lines 520 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.fuzzyTextFilter = void 0; const match_sorter_1 = require("match-sorter"); function fuzzyTextFilter(rows, id, filterValue) { return (0, match_sorter_1.matchSorter)(rows, filterValue, { keys: [(row) => row.values[id]], }); } exports.fuzzyTextFilter = fuzzyTextFilter; // Let the table remove the filter if the string is empty fuzzyTextFilter.autoRemove = (val) => !val; //# sourceMappingURL=fuzzyFilter.js.map