Commits
Click on a commit to change the comparison rangefix(parser): hashbang comment should not keep the end newline char (#5844)
Previously it included a newline in the value
```
"hashbang": {
"type": "Hashbang",
"start": 0,
"end": 16,
"value": "/usr/bin/node\n"
},
```
This change will also make the lexer emit a `\n` token, which will make comment position detection correct.