* feat(core): toggle additional prompts in CNW with a flag * feat(repo): handle cli params with yargs * feat(core): add docs generation * chore(repo): add colors * fix(core): migrate to yargs 17.x * fix(core): update markup generation
4 lines
119 B
TypeScript
4 lines
119 B
TypeScript
export function stringifyCollection(items: string[]): string {
|
|
return items.map((item) => `"${item}"`).join(', ');
|
|
}
|