Skip to content

Commit

Permalink
Merge pull request #337 from LeuisKen/master
Browse files Browse the repository at this point in the history
comments: separate '-' and numbers charCode
  • Loading branch information
errorrik committed Sep 3, 2018
2 parents 03ccb9d + 76fe20a commit 7d559d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/read-unary-expr.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ function readUnaryExpr(walker) {
case 39: // '
return readString(walker);

case 45: // -
// number
case 45:
case 48:
case 49:
case 50:
Expand Down

0 comments on commit 7d559d9

Please sign in to comment.