class NHKore::Variator

@author Jonathan Bradley Whited @since 0.2.0

Public Instance Methods

begin_variate(str) click to toggle source
# File lib/nhkore/variator.rb, line 18
def begin_variate(str)
  return str
end
variate(str) click to toggle source
# File lib/nhkore/variator.rb, line 22
def variate(str)
  str = begin_variate(str)
  str = end_variate(str)

  return str
end