MCPcopy Index your code
hub / github.com/coder/mux / isParsedValueToken

Function isParsedValueToken

src/node/runtime/sshConfigParser.ts:75–77  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

73}
74
75function isParsedValueToken(value: unknown): value is ParsedValueToken {
76 return typeof value === "object" && value !== null && "val" in value && "separator" in value;
77}
78
79function tokensToString(tokens: ParsedValueToken[]): string {
80 return tokens

Callers 2

toStringValueFunction · 0.85
toStringArrayFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected