Module: Str2Duck::MPatch::ObjectEXT

Defined in:
lib/str2duck/mpatch/object.rb

Instance Method Summary collapse

Instance Method Details

#to_duckObject Also known as: duck



5
6
7
8
9
10
11
12
# File 'lib/str2duck/mpatch/object.rb', line 5

def to_duck
  if self.class <= String
    Str2Duck.parse(self)
  else
    return self
  end

end