Created
November 1, 2018 08:34
-
-
Save sas1ni69/c904adc595c117d5e4199df63ab0c484 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def format_name(format: "%{first_name} %{last_name}, (%{preferred_name})", **names) | |
defaults = { first_name: '', last_name: '', preferred_name: '' } | |
names = defaults.merge(names.slice(:first_name, :last_name, :preferred_name)) | |
(format % names).squish | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment