- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 35
Open
Description
Syntax highlighting this JavaScript file
  attribute: function(str) {
    var quote = '';
    var quoteRe = /['"]/;
    var key = '';
    var i;
    // consume all whitespace before the key
    for (i = 0; i < str.length; i++) {
      if (!this.whitespaceRe.test(str[i])) break;
      if (str[i] === '\n') {
        this.incrementLine(1);
      } else {
        this.incrementColumn(1);
      }
    }breaks because of the quote in the regex /['"]/;:

Metadata
Metadata
Assignees
Labels
No labels