Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support numeric separator (i.e. 123_456)
ECMAScript numeric separator proposal is now on stage3 https://github.com/tc39/proposal-numeric-separator and will come to TypeScript at version 2.7. microsoft/TypeScript#20324 Example: ```typescript const i = 123_456; const x = 0x1fa_EF6; const f = 123_456.0_456; const f2 = 123_456.4_5e1_2; ```
- Loading branch information