function skipWhitespace()

in src/main.ts [75:83]


	function skipWhitespace(): void {
		while (pos < len) {
			let chCode = content.charCodeAt(pos);
			if (chCode !== ChCode.SPACE && chCode !== ChCode.TAB && chCode !== ChCode.CARRIAGE_RETURN && chCode !== ChCode.LINE_FEED) {
				break;
			}
			advancePosBy(1);
		}
	}