Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bigskysoftware/_hyperscript
/ #isWhitespace
Method
#isWhitespace
tools/common/_hyperscript.iife.js:218–220 ·
view source on GitHub ↗
(c)
Source
from the content-addressed store, hash-verified
216
return
c >=
"0"
&& c <=
"9"
;
217
}
218
#isWhitespace(c) {
219
return
c ===
" "
|| c ===
" "
|| c ===
"\r"
|| c ===
"\n"
;
220
}
221
#isNewline(c) {
222
return
c ===
"\r"
|| c ===
"\n"
;
223
}
Callers
3
#consumeWhitespace
Method · 0.95
#isLineComment
Method · 0.95
#tokenize
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected