class Handlebars::Helpers::StringFormatting::Lamel

lamel case is the same as camel case except with the first character as lower case

Public Instance Methods

parse(value) click to toggle source

Parse will lamel case is the same as camel case except with the first character as lower case

@example

puts Lamel.new.parse('the quick brown fox 99')

theQuickBrownFox99

@return [String] value converted to lamel case

# File lib/handlebars/helpers/string_formatting/lamel.rb, line 23
def parse(value)
  tokenizer.parse(value, separator: '_').camelize(:lower)
end