Skip to content
1 min read · 44 words

Variable: escapeShellValue

ts
const escapeShellValue: (value: string) => Promise<string> = quoteShellValue;

Defined in: src/batteries/sandbox/escape.ts:107

Compatibility alias for consumers that describe this operation as escaping.

Quote one command string as one shell argument.

Parameters

ParameterType
valuestring

Returns

Promise<string>