Module: LibPath::Constants::Windows::LibPath_Constants_Windows_Details::InvalidCharacters::PathNameSeparators

Defined in:
lib/libpath/constants/windows.rb

Overview

Valid path name separator characters

Constant Summary collapse

LIST =

The list of characters

[

  "\\",
  '/',
]
RE =

The regular expression

/[#{LIST.map { |m| Regexp.escape m }.join}]/