Skip to content

Instantly share code, notes, and snippets.

@skalibog
Created August 28, 2019 08:10
Show Gist options
  • Save skalibog/4eb108374cb25b12b859f7cb7f3a7237 to your computer and use it in GitHub Desktop.
Save skalibog/4eb108374cb25b12b859f7cb7f3a7237 to your computer and use it in GitHub Desktop.
Snake case modify
snake_case_modify = ->(string) { string.nil? ? nil : string&.gsub(/[^a-zA-Z]/, "_")&.downcase }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment