UNPKG

@linzjs/step-ag-grid

Version:

[![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release) > Reusable [ag-grid](https://www.ag-grid.com/) component for LINZ / Toitū te whenua.

14 lines (13 loc) 351 B
/** * Text matching with wildcards and multiple matchers. * * "L" => L* * "=L" => L * "*L*" => *L* * "*L" => *L * "A B" => A* and B* * "A B, C" => (A* and B*) or C* * "!A" => all values must not match A * Returns true if there's a text match. */ export declare const textMatch: (text: string | undefined | null, filter: string) => boolean;