@stryke/prisma-trpc-generator
Version:
A fork of the prisma-trpc-generator code to work in ESM with Prisma v6.
17 lines (16 loc) • 409 B
JavaScript
//#region ../string-format/src/lower-case-first.ts
/**
* Lower case the first character of an input string.
*
* @remarks
* "tHISISANEXAMPLE"
*
* @param input - The input string.
* @returns The lower-cased string.
*/
function lowerCaseFirst(input) {
return input ? input.charAt(0).toLowerCase() + input.slice(1) : input;
}
//#endregion
export { lowerCaseFirst };
//# sourceMappingURL=lower-case-first.mjs.map