class NHKore::Splitter

@author Jonathan Bradley Whited @since 0.2.0

Public Instance Methods

begin_split(str) click to toggle source
# File lib/nhkore/splitter.rb, line 21
def begin_split(str)
  return str
end
split(str) click to toggle source
# File lib/nhkore/splitter.rb, line 25
def split(str)
  str = begin_split(str)
  str = end_split(str)

  return str
end