Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/cortex-js/compute-engine
/ skipWhitespace
Method
skipWhitespace
src/common/markdown-block.ts:248–252 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
246
247
// Helper methods
248
skipWhitespace() {
249
while
(!this.atEnd() && (this.peek() ===
' '
|| this.peek() ===
'\t'
)) {
250
this.consume();
251
}
252
}
253
254
skipEmptyLines() {
255
while
(!this.atEnd()) {
Callers
4
parseBlock
Method · 0.95
parseHeading
Method · 0.95
parseBlockquote
Method · 0.95
parseList
Method · 0.95
Calls
3
consume
Method · 0.80
atEnd
Method · 0.45
peek
Method · 0.45
Tested by
no test coverage detected