MCPcopy Create free account
hub / github.com/denoland/std / skipWhitespaces

Method skipWhitespaces

yaml/_loader_state.ts:247–253  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

245 }
246
247 skipWhitespaces() {
248 let ch = this.#scanner.peek();
249 while (isWhiteSpace(ch)) {
250 this.#scanner.next();
251 ch = this.#scanner.peek();
252 }
253 }
254
255 skipComment() {
256 let ch = this.#scanner.peek();

Callers 4

skipSeparationSpaceMethod · 0.95
readBlockScalarMethod · 0.95
readBlockMappingMethod · 0.95
readDirectivesMethod · 0.95

Calls 3

isWhiteSpaceFunction · 0.90
peekMethod · 0.45
nextMethod · 0.45

Tested by

no test coverage detected