Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Moddable-OpenSource/moddable
/ fxIsJSIdentifierFirst
Function
fxIsJSIdentifierFirst
modules/piu/PC/Code/piuCodeJS.c:111–114 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
109
}
110
111
xsBooleanValue fxIsJSIdentifierFirst(uint32_t c)
112
{
113
return (((
'A'
<= c) && (c <=
'Z'
)) || ((
'a'
<= c) && (c <=
'z'
)) || (c ==
'$'
) || (c ==
'_'
)) ? 1 : 0;
114
}
115
116
xsBooleanValue fxIsJSIdentifierNext(uint32_t c)
117
{
Callers
1
fxParseJSCode
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected