UNPKG

setup-cpp

Version:

Install all the tools required for building and testing C++/C projects.

9 lines (8 loc) 269 B
/** * Escape a string for use in a shell command * @param valGiven The string to escape * @param shouldEscapeSpace Whether to escape spaces in the string * * @private */ export declare function escapeString(valGiven: string, shouldEscapeSpace?: boolean): string;