mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-30 02:52:30 +00:00
6 lines
163 B
CoffeeScript
6 lines
163 B
CoffeeScript
module.exports =
|
|
upperCaseFirst: (str) ->
|
|
str[0].toUpperCase() + str[1..].toLowerCase()
|
|
titleCase: (str) ->
|
|
str.replace /\w\S*/g, @upperCaseFirst
|