Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/d1ll0n/stack-packer
/ String
Interface
String
src/lib/String.ts:1–4 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
interface
String {
2
toPascalCase() : string;
3
toCamelCase() : string;
4
}
5
6
String.prototype.toPascalCase =
function
() {
7
return
this[0].toUpperCase().concat(this.slice(1));
Callers
6
getCallFunction
Function · 0.80
getFieldSetterName
Function · 0.80
getFieldGetterName
Function · 0.80
getAccessorOptions
Function · 0.80
findGetterOrSetterForFields
Method · 0.80
createLibrary
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected