UNPKG

setup-cpp

Version:

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

8 lines (6 loc) 207 B
export function unique(dirs: string[]) { return [...new Set(dirs)] } export function quoteIfHasSpace(str: string, quoteChar = "\"") { return str.includes(" ") ? `${quoteChar}${str}${quoteChar}` : str }