UNPKG

@kirz/react-native-toolkit

Version:

Toolkit to speed up React Native development

7 lines 166 B
export function capitalize(word) { if (!word) { return word; } return word.charAt(0).toUpperCase() + word.slice(1); } //# sourceMappingURL=capitalize.js.map