We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79fc7e1 commit 28288baCopy full SHA for 28288ba
src/lexer/utils.js
@@ -52,11 +52,6 @@ module.exports = {
52
var ch = this._input[this.offset - 1];
53
return tokens.indexOf(ch) !== -1;
54
},
55
- // check if current char is a newline
56
- is_NEWLINE: function() {
57
- var ch = this._input[this.offset - 1];
58
- return ch === '\n' || ch === '\r';
59
- },
60
// check if current char is a whitespace
61
is_WHITESPACE: function() {
62
0 commit comments