7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
jasmine.HtmlSpecFilter = function(options) {
|
|
var filterPattern = new RegExp(options && options.filterString());
|
|
|
|
this.matches = function(specName) {
|
|
return filterPattern.test(specName);
|
|
};
|
|
}; |