behind`foo`
behind.exactly`foo`
behind('foo')
RegExp equivalent:
/(?<=foo)/
Negated token - Negative lookbehind
notBehind`foo`
not.behind`foo`
notBehind.exactly`foo`
notBehind('foo')
RegExp equivalent:
/(?<!foo)/
Wrap the given token in a positive lookbehind.
Rest
...args: unknown[]behind`foo`
behind.exactly`foo`
behind('foo')
RegExp equivalent:
/(?<=foo)/
Negated token - Negative lookbehind
notBehind`foo`
not.behind`foo`
notBehind.exactly`foo`
notBehind('foo')
RegExp equivalent:
/(?<!foo)/
Wrap the given token in a positive lookbehind.
Optional
node: RegExpTokenbehind`foo`
behind.exactly`foo`
behind('foo')
RegExp equivalent:
/(?<=foo)/
Negated token - Negative lookbehind
notBehind`foo`
not.behind`foo`
notBehind.exactly`foo`
notBehind('foo')
RegExp equivalent:
/(?<!foo)/
Generated using TypeDoc
Wrap the given token in a positive lookbehind.