aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/filters/tests-id-filter.ts
blob: 0e5af311697f09f27ea4d12a80c5c1e2e9d3c227 (plain)
1
2
3
4
5
6
7
8
9
10
11
export class TestsIdFilter {

    constructor() {
        let filter = <TestsIdFilter>( (testId:string) => {
            return testId.replace(/\s/g, '_').toLowerCase();
        });

        return filter;
    }
}