Skip to content

Instantly share code, notes, and snippets.

@mvcypriano
Created May 2, 2019 17:32
Show Gist options
  • Save mvcypriano/eb3d0016c1472085f2d86ee7fc7f19ad to your computer and use it in GitHub Desktop.
Save mvcypriano/eb3d0016c1472085f2d86ee7fc7f19ad to your computer and use it in GitHub Desktop.
def fontSize(name)
charCount = name.length
if charCount < 22
return 40
elsif charCount > 36
return 25
else
puts charCount
return (45 - 0.5*charCount).round
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment