repo.or.cz
/
18plus-7leafadventure.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix hair, dick around with new game screen.
[18plus-7leafadventure.git]
/
src
/
org
/
sevenchan
/
dongs
/
StringTools.as
blob
e486630b9b1bb5ea4311edb19b07bad7cbdae618
1
package
org
.
sevenchan
.
dongs
2
{
3
/**
4
* ...
5
* @author Harbinger
6
*/
7
public
class
StringTools
8
{
9
10
public static
function
capitalize
(
s
:
String
):
String
11
{
12
return
s
.
substr
(
0
,
1
).
toUpperCase
() +
s
.
substr
(
1
);
13
}
14
15
}
16
17
}