Variable tabConst

tab: RegExpToken = r.tab

Match a tab character.

Example

tab

RegExp equivalent:

/\t/

Example

Negated token

not.tab
not(tab)

RegExp equivalent:

/[^\t]/

Generated using TypeDoc