The \ s character class matches all whitespace characters, not just spaces. This includes tabs (\ t), and if multi-line matching is enabled, it includes a carriage return (\ r) and a new line (\ n). Theoretically, if your regex engine handles unicode, there are also unicode space characters that may match \, although your mileage may vary.
, "a\t b" regex/a\s + b/, .