@stryke/prisma-trpc-generator
Version:
A fork of the prisma-trpc-generator code to work in ESM with Prisma v6.
15 lines (13 loc) • 300 B
JavaScript
//#region ../string-format/src/combine.ts
/**
* Combine two strings with a space in between.
*
* @param acc - The accumulated string.
* @param str - The string to add.
* @returns The combined string.
*/
function combine(acc, str) {
return `${acc} ${str}`;
}
//#endregion
exports.combine = combine;