MCPcopy Create free account
hub / github.com/denodrivers/postgres / consumeDimensions

Method consumeDimensions

query/array_parser.ts:74–81  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

72 }
73
74 consumeDimensions(): void {
75 if (this.source[0] === "[") {
76 while (!this.isEof()) {
77 const char = this.nextCharacter();
78 if (char.value === "=") break;
79 }
80 }
81 }
82
83 parse(nested = false): ArrayResult<T> {
84 let character, parser, quote;

Callers 1

parseMethod · 0.95

Calls 2

isEofMethod · 0.95
nextCharacterMethod · 0.95

Tested by

no test coverage detected