Home
Pages
Classes
Methods
Pages
Gemfile
Gemfile.lock
LICENSE
README
Rakefile
package.json
rollup.config.js
event_wrapper.js
index.js
initialize.js
node_wrapper.js
anchor.js
document.js
form.js
frame.js
index.js
input.js
modal.js
script.js
string_reader.js
url.js
benchmark.js
capitalize.js
index.js
unescape_html.js
virtual_node.js
index-bundle.js
index-bundle.js.map
index.js
yarn.lock
export function capitalize(string) {
return
string
.
charAt
(
0
).
toUpperCase
()
+
string
.
slice
(
1
)
}