(words)
| 438 | var plugins = {}; |
| 439 | |
| 440 | function keywordRegexp(words) { |
| 441 | return new RegExp("^(?:" + words.replace(/ /g, "|") + ")$") |
| 442 | } |
| 443 | |
| 444 | var Parser = function Parser(options, input, startPos) { |
| 445 | this.options = options = getOptions(options); |
no outgoing calls
no test coverage detected
searching dependent graphs…