%PDF- %PDF-
| Direktori : /var/lib/rbenv/versions/3.1.4/lib64/ruby/3.1.0/csv/ |
| Current File : //var/lib/rbenv/versions/3.1.4/lib64/ruby/3.1.0/csv/input_record_separator.rb |
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