UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

4 lines 249 B
export function capitalizeFirstLowerTail(text) { var _text$substring; return !text ? text : text.charAt(0).toUpperCase() + ((_text$substring = text.substring(1)) === null || _text$substring === void 0 ? void 0 : _text$substring.toLowerCase()); }