(code: number)
| 758 | } |
| 759 | |
| 760 | function isExponentStart(code: number): boolean { |
| 761 | return code == chars.$e || code == chars.$E; |
| 762 | } |
| 763 | |
| 764 | function isExponentSign(code: number): boolean { |
| 765 | return code == chars.$MINUS || code == chars.$PLUS; |
no outgoing calls
no test coverage detected
searching dependent graphs…