Step 3: Usage
Treat custom tokens like a built-in token
const expr1 = notExactly`foo`.exactly`bar`.toRegExp();
// /(?!foo)[^]{3}bar/const expr2 = capture.severity.matchAll.toRegExp();
// /^(error|warning|info|debug)$/econst expr3 = r.alpha(false).toRegExp();
// /[a-z]/Last updated