UNPKG

@kirz/react-native-toolkit

Version:

Toolkit to speed up React Native development

8 lines (6 loc) 137 B
export function capitalize(word: string) { if (!word) { return word; } return word.charAt(0).toUpperCase() + word.slice(1); }