Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 651 Bytes

prsc.skipchars.md

File metadata and controls

26 lines (15 loc) · 651 Bytes

Home > prsc > skipChars

skipChars() function

Creates a Parser that skips the given number of characters.

This counts in unicode characters (code points), not UTF-16 code units.

Signature:

export declare function skipChars(nCodepoints: number): Parser<void>;

Parameters

Parameter Type Description
nCodepoints number number of characters to skip

Returns:

Parser<void>