Files
Bubberstation/tgui/scripts/text.coffee
2016-01-01 17:47:44 -06:00

6 lines
163 B
CoffeeScript

module.exports =
upperCaseFirst: (str) ->
str[0].toUpperCase() + str[1..].toLowerCase()
titleCase: (str) ->
str.replace /\w\S*/g, @upperCaseFirst