Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/angular/angular
/ isExponentStart
Function
isExponentStart
packages/compiler/src/expression_parser/lexer.ts:760–762 ·
view source on GitHub ↗
(code: number)
Source
from the content-addressed store, hash-verified
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;
Callers
1
scanNumber
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected