maybeLazily`foo`
maybe.lazily`foo`
RegExp equivalent:
/(?:foo)??/
Match a token 0 or 1 times, trying to match as short as possible.
maybeLazily
is a short form of maybe.lazily
. See the documentation of maybe for more details.
Rest
...args: unknown[]maybeLazily`foo`
maybe.lazily`foo`
RegExp equivalent:
/(?:foo)??/
Match a token 0 or 1 times, trying to match as short as possible.
maybeLazily
is a short form of maybe.lazily
. See the documentation of maybe for more details.
maybeLazily`foo`
maybe.lazily`foo`
RegExp equivalent:
/(?:foo)??/
Generated using TypeDoc
Match a token 0 or 1 times, trying to match as short as possible.
maybeLazily
is a short form ofmaybe.lazily
. See the documentation of maybe for more details.