UNPKG

@stryke/prisma-trpc-generator

Version:

A fork of the prisma-trpc-generator code to work in ESM with Prisma v6.

15 lines (14 loc) 329 B
//#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 export { combine }; //# sourceMappingURL=combine.mjs.map