Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/dropbox/dropbox-sdk-java
/ _capwords
Function
_capwords
core/generator/java/java.stoneg.py:102–104 ·
view source on GitHub ↗
(s)
Source
from the content-addressed store, hash-verified
100
101
102
def
_capwords(s):
103
words = s.replace(
'/'
,
'_'
).split(
'_'
)
104
return
''
.join(w[:1].upper() + w[1:]
for
w in words)
105
106
107
def
_camelcase(s):
Callers
3
_camelcase
Function · 0.85
capwords
Function · 0.85
union_create_with_method_name
Function · 0.85
Calls
2
join
Method · 0.80
split
Method · 0.45
Tested by
no test coverage detected