notBehind`foo`
not.behind`foo`
notBehind.exactly`foo`
notBehind('foo')
RegExp equivalent:
/(?<!foo)/
Wrap the given token in a negative lookbehind.
notBehind
is a short form of not.behind
. See the documentation of behind for more details.
Rest
...args: unknown[]notBehind`foo`
not.behind`foo`
notBehind.exactly`foo`
notBehind('foo')
RegExp equivalent:
/(?<!foo)/
Wrap the given token in a negative lookbehind.
notBehind
is a short form of not.behind
. See the documentation of behind for more details.
Optional
node: RegExpTokennotBehind`foo`
not.behind`foo`
notBehind.exactly`foo`
notBehind('foo')
RegExp equivalent:
/(?<!foo)/
Generated using TypeDoc
Wrap the given token in a negative lookbehind.
notBehind
is a short form ofnot.behind
. See the documentation of behind for more details.