@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
13 lines • 360 B
TypeScript
/**
* Produces a comma-separated list based on the list provided.
*
* @param list
* @param mappingFunction
* @param [acc='']
*
* @returns {string}
*/
export declare function commaSeparated(list: Array<string | {
toString: () => string;
}>, mappingFunction?: (item: any) => string, acc?: string): string;
//# sourceMappingURL=commaSeparated.d.ts.map