Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. def snake_case_to_camel_case(text)
  2. text.capitalize.gsub(/_(\w)/) { $1.upcase }.gsub(/^(\w)/) { $1.downcase }
  3. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement