Method: Fech::Filing#translate

Defined in:
lib/fech/filing.rb

#translate {|t| ... } ⇒ Object

Yields:

  • (t)

    returns a reference to the filing’s Translator

Yield Parameters:



186
187
188
189
190
191
192
# File 'lib/fech/filing.rb', line 186

def translate(&block)
  if block_given?
    yield translator
  else
    translator
  end
end