Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/QodeXcli/QodeX
/ stripQuotes
Function
stripQuotes
src/skills/loader.ts:187–192 ·
view source on GitHub ↗
(s: string)
Source
from the content-addressed store, hash-verified
185
}
186
187
function
stripQuotes(s: string): string {
188
if
((s.startsWith(
'"'
) && s.endsWith(
'"'
)) || (s.startsWith(
"'"
) && s.endsWith(
"'"
))) {
189
return
s.slice(1, -1);
190
}
191
return
s;
192
}
Callers
1
parseFrontmatter
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected