D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
proc
/
thread-self
/
root
/
opt
/
alt
/
ruby33
/
share
/
ruby
/
csv
/
Filename :
input_record_separator.rb
back
Copy
require "English" require "stringio" class CSV module InputRecordSeparator class << self if RUBY_VERSION >= "3.0.0" def value "\n" end else def value $INPUT_RECORD_SEPARATOR end end end end end