MCPcopy Index your code
hub / github.com/simstudioai/sim / readString

Function readString

apps/sim/connectors/azure-devops/azure-devops.ts:153–155  ·  view source on GitHub ↗

* Reads a trimmed string config value, returning '' when absent.

(value: unknown)

Source from the content-addressed store, hash-verified

151 * Reads a trimmed string config value, returning '' when absent.
152 */
153function readString(value: unknown): string {
154 return typeof value === 'string' ? value.trim() : ''
155}
156
157/**
158 * Escapes a value for safe interpolation into a single-quoted WIQL string literal.

Callers 3

readWorkItemFiltersFunction · 0.85
readFileFiltersFunction · 0.85
azure-devops.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected