zeroOrMoreLazily`foo`
zeroOrMore.lazily`foo`
RegExp equivalent:
/(?:foo)*?/
Match a token 0 to infinite times, trying to match as short as possible.
zeroOrMoreLazily is a short form of zeroOrMore.lazily. See the documentation of zeroOrMore for more details.
Rest ...args: unknown[]zeroOrMoreLazily`foo`
zeroOrMore.lazily`foo`
RegExp equivalent:
/(?:foo)*?/
Match a token 0 to infinite times, trying to match as short as possible.
zeroOrMoreLazily is a short form of zeroOrMore.lazily. See the documentation of zeroOrMore for more details.
zeroOrMoreLazily`foo`
zeroOrMore.lazily`foo`
RegExp equivalent:
/(?:foo)*?/
Generated using TypeDoc
Match a token 0 to infinite times, trying to match as short as possible.
zeroOrMoreLazilyis a short form ofzeroOrMore.lazily. See the documentation of zeroOrMore for more details.