UNPKG

176 BJavaScriptView Raw
1'use strict';
2
3class SimpleMatcher {
4 constructor(pattern) {
5 this.pattern = pattern;
6 }
7
8 match(text) {
9 return this.pattern === text;
10 }
11}
12
13module.exports = SimpleMatcher;