rdme
Version:
ReadMe's official CLI and GitHub Action.
8 lines (7 loc) • 366 B
TypeScript
/**
* When `INPUT_RDME` is parsed with `string-argv`, tokens like `--flag="value"` remain a single
* argv element whose suffix includes literal quote characters. A real shell strips those quotes
* before invoking Node, so we normalize to match shell and `process.argv` behavior.
*
*/
export declare function normalizeStringArgvForGha(argv: string[]): string[];