@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
10 lines • 341 B
TypeScript
/**
* Escape a string or array of strings replacing all quote and backslashes
* appearing in it.
*
* @param stringOrArray - The string or array of strings to escape.
*
* @returns The escaped string.
*/
export declare const shellEscape: (stringOrArray: string | string[]) => string | string[];
//# sourceMappingURL=shellEscape.d.ts.map