method
unquote
v4.2.1 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::PostgreSQL::Name
unquote(part)protected
No documentation available.
# File activerecord/lib/active_record/connection_adapters/postgresql/utils.rb, line 38
def unquote(part)
if part && part.start_with?('"')
part[1..-2]
else
part
end
end