UNPKG

gros-bras-shared

Version:

This holds all shared files such as interfaces or helpers used by Gros Bras, both frontoffices and baackoffices, and backend etc...

7 lines (6 loc) 320 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.uppercaseFirstChar = void 0; // TODO: Define tests and get it from gros-bras-shared var uppercaseFirstChar = function (str) { return str.charAt(0).toUpperCase() + str.slice(1); }; exports.uppercaseFirstChar = uppercaseFirstChar;