UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

3 lines 115 B
export function capitalizeFirst(text) { return !text ? text : text.charAt(0).toUpperCase() + text.substring(1); }