*repeats the group contents below any number of times:
+matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case sensitive)
$the literal $ (3610 / 448 / 2416)
_the literal _ (9510 / 1378 / 5F16)
\s*any whitespace character, repeated any number of times
=the literal = (6110 / 758 / 3D16)
\s*any whitespace character, repeated any number of times
requirethe literal text require (case sensitive) \(the literal ( (4010 / 508 / 2816)
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
Non-Capturing Group(?:assert|fs|path|child_process) assertthe literal text assert (case sensitive) fsthe literal text fs (case sensitive) paththe literal text path (case sensitive) 4th Alternativechild_process child_processthe literal text child_process (case sensitive) \2the text saved by group 2
\)the literal ) (4110 / 518 / 2916)
,?optionally matches the literal , (4410 / 548 / 2C16)
Character Class[\n\r\t\s]* *matches any number of characters from the set below:
\na line-feed (newline) character (ASCII 10)
\ra carriage return (ASCII 13)
\ta tab character (ASCII 9)
\sany whitespace character