Rest
...args: unknown[]charRange`a` `z`
charRange('a', 'z')
RegExp equivalent:
/[a-z]/
Negated token
notCharRange`a` `z`
not.charRange`a` `z`
notCharRange('a', 'z')
RegExp equivalent:
/[^a-z]/
Match a character ranging from the first char to the second one.
Escape sequences are supported and the two characters must be in order.
charRange`a` `z`
charRange('a', 'z')
RegExp equivalent:
/[a-z]/
Negated token
notCharRange`a` `z`
not.charRange`a` `z`
notCharRange('a', 'z')
RegExp equivalent:
/[^a-z]/
Match a character ranging from the first char to the second one.
Escape sequences are supported and the two characters must be in order.
charRange`a` `z`
charRange('a', 'z')
RegExp equivalent:
/[a-z]/
Negated token
notCharRange`a` `z`
not.charRange`a` `z`
notCharRange('a', 'z')
RegExp equivalent:
/[^a-z]/
Generated using TypeDoc
Match a character ranging from the first char to the second one.
Escape sequences are supported and the two characters must be in order.