Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Nov 26, 2018
1 parent 216338f commit a251e62
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion types/Searchable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export default abstract class Searchable {

public matchesPattern(pattern: RegExp): boolean {
return this.getSearchItemText().some((text) => {
console.log(text, pattern);
return text.match(pattern) !== null;
});
}
Expand Down

0 comments on commit a251e62

Please sign in to comment.